1、多返回值函數
例如 :s,e = string.find('test','t')spa
執行print(s,e),會獲得結果1 1string
那這時咱們怎麼使用這個執行結果呢?io
其實s與e都是一個變量,因此你能夠print(s)或print(e)就能分別看到對應的結果function
2、可變參數class
一、函數聲明test
function a(...)變量
二、使用參數參數
轉爲局部變量,local arg={...}
三、參數個數
#arg
四、調用
a(1,2)參數能夠任意個