主頁 > 知識庫 > Lua返回一個Closures函數(shù)實(shí)例

Lua返回一個Closures函數(shù)實(shí)例

熱門標(biāo)簽:新岸線智能電銷機(jī)器人 冀州市地圖標(biāo)注 個人怎么在地圖標(biāo)注需要的店鋪 怎么去除地圖標(biāo)注 地圖標(biāo)注大廈 漳州智云呼電話機(jī)器人 清朝地圖標(biāo)注哈爾濱 百度地圖標(biāo)注早餐區(qū)域 武漢外呼防封系統(tǒng)多少錢

復(fù)制代碼 代碼如下:

do
 function Button(x)
  print("Call Button");
  x.action();
  print(x.label);
 end

 function add_to_display(digit)
  print("Call add_to_display");
  print(digit);
 end

 function digitButton(digit)
  return Button{//return a table and the function(Button), it means that the Button receives the param(the table{...})
      label = tostring(digit),
      action = function()
         print("digit: ", digit);
         add_to_display(digit);
         end
       }

 end

 local fun = digitButton(3);

end

寫個簡單的迭代器:

復(fù)制代碼 代碼如下:

do
 t_ = {9, 2, 3, 4};

 function values(t)
  local i = 0;
  return function()
     i = i + 1;
     return t[i];
    end
 end

 iter = values(t_);

 while true do
  local element = iter();
  if element == nil then
   break;
  end

  print(element);
 end

end

標(biāo)簽:金昌 天門 濰坊 德宏 天門 宣城 臺灣 儋州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Lua返回一個Closures函數(shù)實(shí)例》,本文關(guān)鍵詞  Lua,返回,一個,Closures,函數(shù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Lua返回一個Closures函數(shù)實(shí)例》相關(guān)的同類信息!
  • 本頁收集關(guān)于Lua返回一個Closures函數(shù)實(shí)例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章