__tostring,直接理解就是转化为string,把表转化为string,事实上也是这样,不过表转化为string的具体内容是自己定义的
模型:
table = setmetatable({},{__tostring =
function(table)
--这里写表变为string的具体内容,必须return出来
return
end
})
使用:local str = table
时间: 2024-10-11 01:36:53
__tostring,直接理解就是转化为string,把表转化为string,事实上也是这样,不过表转化为string的具体内容是自己定义的
模型:
table = setmetatable({},{__tostring =
function(table)
--这里写表变为string的具体内容,必须return出来
return
end
})
使用:local str = table