在Lua中创建函数

时间:2013-06-08 11:37:21

标签: function lua corona

当我通过分配创建函数时,“if”条件不起作用,但是当我创建函数时,如下面的第二个例子,它可以工作。你能告诉我为什么吗?

不工作:

local start=os.time()

local countDown = function(event)
   if((os.time()-start)==3) then
      Runtime: removeEventListener("enterFrame", countDown)
   end
   print(os.time()-start)
end

Runtime:addEventListener("enterFrame", countDown)

工作:

local start=os.time()

local function countDown(event)
   if((os.time()-start)==3) then
      Runtime: removeEventListener("enterFrame", countDown)
   end
   print(os.time()-start)
end

Runtime:addEventListener("enterFrame", countDown)

1 个答案:

答案 0 :(得分:12)

这是因为当您执行local countDown = ...时,countDown变量不存在,直到 {/ 1}}部分之后执行。因此,您的函数将访问全局变量,而不是尚不存在的本地变量。

请注意,Lua会将...转换为以下内容:

local function countDown ...