We Recommend

Essential ActionScript 3.0 Essential ActionScript 3.0
The book focuses on the core language and object-oriented programming, but also adds a deep look at the centerpiece of Flash Player's new API: display programming. Enjoy hundreds of brand new pages covering exciting new language features, such as the DOM-based event architecture, E4X, and namespaces--all brimming with real-world sample code.


Posted By

lzyy on 06/26/08


Tagged

objectmemory


Versions (?)


只有一个Object对象存在于内存中


Published in: ActionScript 3 


  1. var obj:Object = new Object();
  2. obj.name="lzyy";
  3.  
  4. var bar = obj;
  5. bar.name="test";
  6.  
  7. trace(obj.name);
  8. //output test

Report this snippet 

You need to login to post a comment.