开发者

Delegates in Haxe

Is there something like a delegate in Haxe?

This would come in handy when I use a anonymous function but still want to maintain the current class'es variable scope.

myObject.callback = function(param) { this.variable = param; };开发者_运维技巧

As you can see this is not accessible from within the function body. :-(


As far as I know you can do it in latest Haxe version. In earlier versions you should be able to do:

var t=this;
myObject.callback = function(param) { t.variable = param; };
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜