;g标签-函数对象 Gui,add,Button,gsure,确定 Gui, Show, w300 h200,函数对象 ^1:: MsgBox,% %MyFunction%(1,2) return return sure() { myf:=new MyFunction MsgBox,% %myf%(1,3) } ;函数对象 class MyFunction { call(a, b) { ;加法运算,a、b为整数 c:=a+b return,c } __Call(Add1, args*) { if (Add1= "") ;对 %fn%() 或 fn.() return this.Call(args*) if (IsObject(Add1)) ; 如果此函数对象作为方法被使用. return this.Call(Add1, args*) } ;... }