Actionscript 通过引用传递
package {
import flash.display.Sprite;
public class test1 extends Sprite {
private var tmp:Object;
public function test1() {
createObj(tmp);
if(tmp == null) {
trace("nothing changed");
}
}
private function createObj(obj:Object):void {
obj = new Object();
}
}
}
在上面的代码中,控制台的输出是:
没有任何改变
为什么?
如果 createObj 的参数是通过引用传递的(即
ActionScript 的默认行为),为什么它没有被修改?
package {
import flash.display.Sprite;
public class test1 extends Sprite {
private var tmp:Object;
public function test1() {
createObj(tmp);
if(tmp == null) {
trace("nothing changed");
}
}
private function createObj(obj:Object):void {
obj = new Object();
}
}
}
In the above code the output on the console is :
nothing changed
Why?
If the argument to createObj was passed by reference(which is the
default behavior of actionscript), why did it not get modified?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你没有传递参考。您传递的
null
被分配给局部变量obj
以在函数内使用。按值或引用传递参数:
在
createObj
中,您正在创建一个必须返回的新引用:You don't pass a reference. You are passing
null
which is assigned to the local variableobj
for use within the function.Passing arguments by value or by reference:
In
createObj
you are creating a new reference which you must return: