w_test 的open 事件中写有以下代码:
uo_test luo_test
luo_test = create uo_test
uo_test 的 constructor 事件中写有以下代码:
return 1
请问,在w_test 的 open 事件中,如何得到uo_test 的 constructorr 的返回值?
------解决方案--------------------
可以在uo_test 中定义实例变量long i_return,修改uo_test 的 constructor 事件中写i_return=1
,然后就可以在w_test 的open 事件中取uo_test.i_return了