Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サーバー上の一時共有オブジェクトのコピーを別の永続共有オブジェクトに作成したいと考えていました。それを行う効率的な方法は何ですか?
ありがとう、ナレシュ
それがより効率的な方法であるかどうかはまったくわかりませんが、古き良き解決策の 1 つはforloop を使用することです。
for
var names = source.getPropertyNames(); for (var prop:String in names) { var value:Object = source.getProperty(names[prop]); destination.setProperty(names[prop], value); }