gpt4 book ai didi

function - Lua 字符串追加

转载 作者:行者123 更新时间:2023-12-04 13:48:54 25 4
gpt4 key购买 nike

所以我创建了一个所有字符串都可以使用的函数,它被称为 append。

local strmt = getmetatable("")
function strmt.__index.append(self, str)
self = self..str
return self
end

然后像这样使用该函数:
self = self:append("stuff")

有没有办法创建一个函数来做到这一点:
local stuff = "hi "
stuff:append("bye")
print(stuff)

并产生
hi bye

最佳答案

不。Lua 中的字符串是不可变的;如果您设置 stuff"hi " ,它将等于 "hi "直到您将其设置为其他内容。 "hi "永远不会变成"hi bye" , 多于 3会变成4 .

关于function - Lua 字符串追加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28912343/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com