gpt4 book ai didi

Lua类不工作

转载 作者:行者123 更新时间:2023-12-01 11:42:26 24 4
gpt4 key购买 nike

我有一个简单的 Lua 类实现。

test = {}
test.__index = test

function test:new()
local o = {}
setmetatable(o, self)
return o
end

function test:setName(name)
self.name = name
print name
end

local name = test:new()
name:setName("hello")

我在运行它时不断收到此错误:

lua: test.lua:12: '=' expected near 'name'

我不确定发生什么或为什么会发生这种情况,将不胜感激任何帮助。

最佳答案

print name 更改为 print(name)print 只是一个常规函数,函数调用需要括号,除非使用单个参数(字符串文字或表文字)调用它们。

关于Lua类不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18392516/

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