尝试调用全局函数为零,但调试器中未显示函数?
Posted
技术标签:
【中文标题】尝试调用全局函数为零,但调试器中未显示函数?【英文标题】:Attempt to call global function is nil, but function is not shown in debugger? 【发布时间】:2021-04-14 02:00:01 【问题描述】:我正在使用 Eclipse LDT 进行开发,使用打包的 Lua EE 和 Lua 5.2 的解释器。我需要从我的 main 方法调用 commandDatabase()
方法,但是当我尝试时,我收到错误:
“尝试调用全局'commandDatabase'(一个零值)”。
我已经查看了这个错误,据我所知,我正在以正确的顺序定义方法。 Lua - attempt to call global 'contains' (a nil value)
当我在调试器中查看它时,解释器似乎没有找到我在commandSystem
和commandHelp
之间定义的任何方法。它在变量区域中显示彼此的功能,例如["commandSystem"] = function()
但commandDatabase()
没有出现
我尝试过像这样调用包装器方法:
function commandDatabaseStep()
return commandDatabase()
end
...但这也不起作用(同样的错误)
相关代码:
-- System command
function commandSystem()
...
end
-- Database command
function commandDatabase()
if arguments[2] == "no_arg1" then
print("The 'database' command must have at least one argument: [generate, wipe, dump, delete, get <system_name>]", true)
return 2
elseif arguments[2] == "generate" then
local file = io.open(database, "w+")
file:write("#ssmhub database")
file:close(file)
return 1
elseif arguments[2] == "dump" then
print("= DUMP START =")
for line in io.lines(database) do
print(line)
end
print("= DUMP END =")
return 1
-- 1+
elseif arguments[2] == "get" then
-- 2+
if isEmpty(arguments[3]) then
print("The 'database get' command must have a <name> parameter")
return 0
-- 2-
else -- 3+
local file = io.open(database, "r")
for line in io.lines(file) do -- 4+
local state = ""
local id = ""
local dividersFound = 0
line:gsub(".", function(c) -- 5+
if c == "|" then -- 6+
if dividersFound == 0 then -- 7+
state = state .. c
end -- 7-
if dividersFound == 1 then -- 8+
id = id .. c
end -- 8-
dividersFound = dividersFound + 1
end -- 6-
end) -- 5-
io.close(file)
end -- 4-
end -- 3-
else -- 9+
print("Illegal argument for command. Use 'help' for a list of commands and arguments.")
return 0
end -- 9-
end -- 2-
end -- 1-
function commandHelp()
...
end
-- Main
function main()
arguments = readProgramArguments()
commandArgument = arguments[1]
commandCompleteCode = 0
-- Process help and system commands
if commandArgument == "database" then
commandCompleteCode = commandDatabase()
end
end main()
【问题讨论】:
当我复制并粘贴代码时,我立即看到commandDatabase
中的end
s 太多了。虽然是if
确定了对end
的需求,但您的代码cmets 错误地标记了elseif
和else
。除此之外,readProgramArguments
没有定义。
啊,是的,谢谢。我切换到 ZeroBrane Studio,这也显示了问题 - 我不推荐 Eclipse LDT! (让我们保留 Eclipse for Java...)。最后一点,readProgramArguments
在别处定义 - 我应该指出这一点
【参考方案1】:
正如@luther 指出的那样,我在commandDatabase
中有一个太多的结尾。
这在我的 IDE 中没有被标记,因为我没有结束 commandSystem
,所以 commandSystem
嵌套在其中。
修复:在commandSystem
中添加一个结尾,并删除我标记为“-- 1-”的结尾。
【讨论】:
以上是关于尝试调用全局函数为零,但调试器中未显示函数?的主要内容,如果未能解决你的问题,请参考以下文章