How can I get an instance's “memory location” in ActionScript?

前端 未结 6 504
刺人心
刺人心 2020-12-03 01:01

FlexBuilder\'s debugger will show you the \"memory location\" (or, I can only assume, something roughly analogous) of any in-scope instance:

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-03 01:28

    AFAIK there is no way to get to the value that the debugger shows you at runtime.

    Total shot in the dark but I think you can use the === comparison to determine if two objects are the same object (in contrast to == that compares the values of the objects). But I could be totally wrong on that.

提交回复
热议问题