Lua的自我學習之路 語法學習1

2021-08-19 22:05:44 字數 683 閱讀 4950

要點1:

lua句末的分號可不寫,但我習慣性寫上

print("hello world");

print("hello world")

要點2:注釋

單行注釋:主要是前面2個 "-"

--printfddsa 單行注釋
多行注釋:"--[[      ]]--「

--[[ 多行注釋--]]

要點3:lua語言沒有型別

書寫string字串型別:

print('hello sdl');--string字串單引號和雙引號都可以

書寫int型別:

b=10;

為空時:lua會輸出nil,  nil就相當於null

print(type(nil)); --返回的是"nil" 不是nil
lua語言中print方法返回的都是字串

Lua的自我學習之路 語法學習2

要點一 和多重注釋不同,兩邊沒有 使用 可以加進去大量字元 html 要點二 加減法,獲取長度等 print 2 8 結果為28,string型別 print 2 8 結果為10,number型別,用 時沒法用字串例子 dff3 只能用數字 number型別 例子 33.3 print 2 6 結果...

Lua的自我學習之路 語法學習8

建立乙個table 建立乙個名為 module.lua 的檔案 module 和檔名可以不一致 module.var sdl module.func1 function print 這是模組module的函式 endfunction module.func2 print 模組方法可以放在外面 end...

Lua的自我學習之路 語法學習10

要點 協同函式 1.建立協同函式 定義協同函式 co coroutine.create function a,b 匿名函式 無需也無法定義方法名 print a b end coroutine.resume co,20,30 啟動協同函式1.定義協同函式coroutine.create 2.啟動協同...