Lua mutate 分配补丁如何工作?
我关注了此页面,并得到了一个元方法__mutate_asn。这是我的测试代码。
local mt = {}
mt.__mutate_asn = function(a, b)
print(a, b)
return a + b
end
debug.setmetatable(0, mt)
a = 1
b = 2
a:=b
print(a)
输出: 1 2 1 “a”永远不会改变。
I followed this page, and got an metamethod __mutate_asn. This is my test code.
local mt = {}
mt.__mutate_asn = function(a, b)
print(a, b)
return a + b
end
debug.setmetatable(0, mt)
a = 1
b = 2
a:=b
print(a)
output:
1 2
1
"a" never be changed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不会改变
正在改变全局变量的语句中的任何数字。所以,也许你需要:
You are not mutating any numbers in the statement
you are mutating global variables. So, perhaps you need: