轉載請標明出處:
http://blog.csdn.net/forezp/article/details/78616622
本文出自方誌朋的博客html
Lua 是一種輕量小巧的腳本語言,用標準C語言編寫並以源代碼形式開放, 其設計目的是爲了嵌入應用程序中,從而爲應用程序提供靈活的擴展和定製功能。git
Lua 是巴西里約熱內盧天主教大學(Pontifical Catholic University of Rio de Janeiro)裏的一個研究小組,由Roberto Ierusalimschy、Waldemar Celes 和 Luiz Henrique de Figueiredo所組成並於1993年開發。
—摘抄 http://www.runoob.com/lua/lua-tutorial.htmlweb
注意: 在上一篇文章中,OpenResty已經有了Lua的環境,這裏安裝的是單獨的Lua環境,用於學習和開發Lua。大多數的電腦是Windowds版本的電腦,Windows版本下載地址http://luaforge.net/projects/luaforwindows/。windows
Linux和Mac電腦下載地址:http://luajit.org/download.html,安裝命令以下:數組
wget http://luajit.org/download/LuaJIT-2.1.0-beta1.tar.gz tar -xvf LuaJIT-2.1.0-beta1.tar.gz cd LuaJIT-2.1.0-beta1 make sudo make install
使用IDEA開發的同窗,能夠經過安裝插件的形式來集成Lua的環境,插件名爲EmmyLua,安裝插件後,在Idea的右側欄就會出現Lua的圖標,點擊圖標,就會出現運行Lua代碼的窗口。建議使用該插件,能夠免去安裝Lua環境的麻煩。svg
安裝好環境後,我採用EmmyLua插件的形式,對Lua的入門語法進行一個簡單的講解。
打開EmmyLua的終端,在終端上輸入:函數
print("hi you")
按ctrl+enter,終端顯示:學習
hi youui
lua的基本數據類型有nil、string、boolean、number、function類型。google
nil相似於Java中的null ,表示空值。變量第一次賦值爲nil。
local num print(num) num=100 print(num)
終端輸出:
nil
100
Number 類型用於表示實數,和 Java裏面的 double 類型很相似。可使用數學函數
math.floor(向下取整) 和 math.ceil(向上取整) 進行取整操做。
local order = 3.99 local score = 98.01 print(math.floor(order)) print(math.ceil(score))
輸出:
3
99
Lua 中有三種方式表示字符串:
一、使用一對匹配的單引號。例:‘hello’。
二、使用一對匹配的雙引號。例:"abclua
3.字符串還能夠用一種長括號(即[[ ]]) 括起來的方式定義
ocal str1 = 'hello world' local str2 = "hello lua" local str3 = [["add\name",'hello']] local str4 = [=[string have a [[]].]=] print(str1) -->output:hello world print(str2) -->output:hello lua print(str3) -->output:"add\name",'hello' print(str4) --
Table 類型實現了一種抽象的「關聯數組」。「關聯數組」是一種具備特殊索引方式的數組,索引一般是字符串(string) 或者 number 類型,但也能夠是除 nil 之外的任意類型的值。
local corp = { web = "www.google.com", --索引爲字符串,key = "web", -- value = "www.google.com" telephone = "12345678", --索引爲字符串 staff = {"Jack", "Scott", "Gary"}, --索引爲字符串,值也是一個表 100876, --至關於 [1] = 100876,此時索引爲數字 -- key = 1, value = 100876 100191, --至關於 [2] = 100191,此時索引爲數字 [10] = 360, --直接把數字索引給出 ["city"] = "Beijing" --索引爲字符串 } print(corp.web) -->output:www.google.com print(corp["telephone"]) -->output:12345678 print(corp[2]) -->output:100191 print(corp["city"]) -->output:"Beijing" print(corp.staff[1]) -->output:Jack print(corp[10]) -->output:36
在 Lua 中,函數 也是一種數據類型,函數能夠存儲在變量中,能夠經過參數傳遞給其餘函
數,還能夠做爲其餘函數的返回值。
local function foo() print("in the function") --dosomething() local x = 10 local y = 20 return x + y end local a = foo --把函數賦給變量 print(a()) --output: in the function 30
~= 不等於
邏輯運算符 | 說明 |
---|---|
and | 邏輯與 |
or | 邏輯或 |
not | 邏輯非 |
local c = nil local d = 0 local e = 100 print(c and d) -->打印 nil print(c and e) -->打印 nil print(d and e) -->打印 100 print(c or d) -->打印 0 print(c or e) -->打印 100 print(not c) -->打印 true print(not d) --> 打印 false
在 Lua 中鏈接兩個字符串,可使用操做符「…」(兩個點).
print("Hello " .. "World") -->打印 Hello World print(0 .. 1) -->打印 01
單個 if 分支 型
x = 10 if x > 0 then print("x is a positive number") end
兩個分支 if-else 型
x = 10 if x > 0 then print("x is a positive number") else print("x is a non-positive number") end
多個分支 if-elseif-else 型:
score = 90 if score == 100 then print("Very good!Your score is 100") elseif score >= 60 then print("Congratulations, you have passed it,your score greater or equal to 60") --此處能夠添加多個elseif else print("Sorry, you do not pass the exam! ") end
Lua 提供了一組傳統的、小巧的控制結構,包括用於條件判斷的 if 用於迭代的 while、repeat
和 for,本章節主要介紹 for 的使用.
for 語句有兩種形式:數字 for(numeric for) 和範型 for(generic for) 。
數字型 for 的語法以下:
for var = begin, finish, step do --body end
實例1:
for i = 1, 5 do print(i) end -- output: 1 2 3 4 5
實例2:
for i = 1, 10, 2 do print(i) end -- output: 1 3 5 7 9
泛型 for 循環經過一個迭代器(iterator) 函數來遍歷全部值:
-- 打印數組a的全部值 local a = {"a", "b", "c", "d"} for i, v in ipairs(a) do print("index:", i, " value:", v) end -- output: index: 1 value: a index: 2 value: b index: 3 value: c index: 4 value: d
lua的入門就到這裏,由於lua語法雖少,但細節有不少,不可能花不少時間去研究這個。入個門,遇到問題再去查資料就好了。另外須要說明的是本文大部份內容爲複製粘貼於OPenResty 最佳實踐,感謝原做者的開源電子書,讓我獲益匪淺。更多內容請參考:
lua入門教程:http://www.runoob.com/lua/lua-tutorial.html
OPenResty 最佳實踐: https://moonbingbing.gitbooks.io/openresty-best-practices/content/index.html
掃碼關注公衆號有驚喜
(轉載本站文章請註明做者和出處 方誌朋的博客)