lua元表
发布时间:2020-12-14 22:09:53 所属栏目:大数据 来源:网络整理
导读:Metatables allow us to change the behavior of a value when confronted with?an undefined operation。 意思是:当遇到未定义操作时,元表允许我们改变值的行为。 比如lua里有基本类型的+,但是table之间+是未定义的,如果我们希望table之间也能方便地做
Metatables allow us to change the behavior of a value when confronted with?an undefined operation。 意思是:当遇到未定义操作时,元表允许我们改变值的行为。 比如lua里有基本类型的+,但是table之间+是未定义的,如果我们希望table之间也能方便地做加法,就需要重写table元表的_add方法。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |