首页 学习日记正文

Lua函数

阿沐 学习日记 2019-08-27 590 0 Lua

Lua函数

函数的三种定义方式:

86R[))19~$ALZ8OFD4}K7CL.png

this代表的是当前对象;

1:

this["xx"]=function(param)

        ...

end


调用:this["xx"](param);


2:

this.xx=function(param)

        ...

end


调用:this.xx(param);



3:

function this:xx(param)

        ...

end


调用:this:xx(param);



打赏

评论

Music