[Zhuan]Lua about

Lua 程式開發筆記

明明我在用 Mac OSX 寫這篇文章,但是依慣例還是要用 FreeBSD 的安裝範例

安裝

# cd /usr/ports/lang/lua; make install distclean

語法

字串:

> print('aabbcc')
aabbcc
> print("aabbcc")
aabbcc
> print([[aabbcc]])
aabbcc
> print([=[aabbcc]=])
aabbcc

賦值:

> a, b, c, d = true, false, 1, 1 < 2
> print(a, b, c, d)
true    false    1    true

比較:

> print(1 == 1)
> print(1 ~= 1)  # 注意,不是用 !=

nil:

> a, b, c, d = 1, 2
> print(a, b, c, d)
1       2       nil     nil

and, or, not:

> print(1 and 1)
1
> print(nil or 1)
1
> print(not nil)
true

接續:

> print('Hello' .. 'World')
HelloWorld

計算長度:

> print(#'abcd')
4
> print(#'Hello, world!')
13
> aa = 'Hello, world!'
> print(#aa)
13
> print(string.len(aa))
13

註解:

> -- print('hello')
>
> --[[ 這是
>> 很長
>> 的註解]]
>

if:

> if 1 == 1 then print('aa') end
aa

while:

> while 1 == 2 do print('should never print') end
>

for:

> for i = 1, 3 do print(i) end
1
2
3
> for i = 1, 10, 2 do print(i) end
1
3
5
7
9
>

repeat(至少執行一次):

> repeat print('aa') until 1 < 10
aa

break:

> for a = 1, 10 do
>>  if a > 5 then
>>      break
>>  end
>>  print(a)
>> end
1
2
3
4
5
>

type:

> print(type(100))
number
> print(type('aa'))
string

函式

> function echo_aa()
>> print('aa')
>> end
> echo_aa()
aa

local variable:

> aa = 'global variable'
> function print_aa()
>> local aa = 'bb'
>> print(aa)
>> end
> print_aa()
bb
> print(aa)
global variable

注意以下兩段:

> -- do block 裡面的 local
> aa = 'global variable'
> do
>> aa = 'bb'
>> print(aa)
>> end
bb
> print(aa)
global variable
> -- 在 global 裡面硬寫 local 是沒有用的
> aa = 'global variable'
> local aa = 'bb'
> print(aa)
global variable

取代內建函式:

> orig_print = print
> function new_print(val)
>> orig_print('aa'..val)
>> end
> print = new_print
> print('cc')
aacc

另種函式寫法:

> print_aa = function()
>> print('aa')
>> end
> print_aa()
aa

local 函式:

> aa = function()
>> local print = function() print('aa') end
>> print('bb')
>> end
> aa()
aa

Tables

> aa = {['aa']='aa', ['bb']='bb', ['cc'] = 'cc'}
> print(aa['bb'])
bb
> -- 簡易寫法
> new_aa = {aa='aa', bb='bb', cc='cc'}
> print(new_aa['aa'])
aa
> -- 另種取值
> print(new_aa.aa)
aa
> -- 範例
> aa = {bb = {cc = true}}
> print(aa.bb.cc)
true

使用 ipairs 達成 number 為 key 的 table loop:

> aa = {'aa', 'bb', 'cc', 'dd'}
> for key, value in ipairs(aa) do
>> print(key .. ' -> ' .. value)
>> end
1 -> aa
2 -> bb
3 -> cc
4 -> dd

使用 pairs 達成 name 為 key 的 table loop:

> aa = {['aa']='aa', ['bb']='bb', ['cc'] = 'cc'}
> for key, value in pairs(aa) do
>> print(key .. ' -> ' .. value)
>> end
cc -> cc
aa -> aa
bb -> bb

一些 table 相關操作:

table.sort(TABLE)
table.insert(TABLE, new_item) 等同 TABLE[#TABLE + 1] = new_item
table.concat(TABLE) 連接字串
table.remove(TABLE) 移除最後一個 item
table.maxn(TABLE) 找出 key 最大正值

Tables 的物件導向:

> function aa()
>>  local function bb()
>>      return 'bb'
>>  end
>>  local function cc()
>>      return 'cc'
>>  end
>>  return {bb = bb, cc = cc}
>> end
> print(aa().bb())
bb
> print(aa().cc())
cc

或是:

> aa = {}
> function aa:print()
>> print('aa')
>> end
> aa:print()
aa

strings

一些用法:

string.lower('HELLO')
string.upper('hello')
string.reverse('hello')
string.rep('hello', 2)      #=> hellohello
string.sub('hello', 1, 4)   #=> hell
string.len('hello')         #=> 5
string.byte('ABCDE', 1, 5)  #=> 65 66 67 68 69
string.byte('A')            #=> 65
string.char(65)             #=> A
string.format(">>%15s%6d<<", 'abc', 123)   #=> >>             abc    123<<
string.gsub('The rain in Spain stays mainly in the plain.')     #=> The royn in Spoyn stays moynly in the ployn.
string.gsub('The rain in Spain stays mainly in the plain.', 999) #=> The royn in Spoyn stays moynly in the ployn.
string.gsub('The rain in Spain stays mainly in the plain.', '[ /,.-]', '') #=> TheraininSpainstaysmainlyintheplain
string.find('abc', 'b')     #=> 2
string.match('abc cde def', '%a+') #=> abc

io

io.write('hello') #=> helloFileHnd, ErrStr = io.open('aa.txt', 'w')
FileHnd:write('hello')
FileHnd:close()os.remove('aa.txt') #=> delete aa.txtio.stdin()
io.stdin:read()
io.stdout()
io.stdout:write()
io.stderr()
io.lines('aa.txt')

command line

取 args 範例,將以下存為 select.lua:

#!/usr/bin/env lua
print((select('#', ...)))
print((select(1, ...)))
print((select(2, ...)))
print((select(3, ...)))

執行:

$ lua select.lua a b c
3
a
b
c

另外就是直接 lua 執行 string:

$ lua -e 'print("aa")'
aa

modules

modules 位置(以 unix 為例):

/usr/local/share/lua/5.1
/usr/local/lib/lua/5.1

所以:

export LUA_PATH='?.lua;/usr/local/lib/lua/5.1/?.lua'

使用 module 的語法為:

require('module_name')
require 'module_name'

撰寫 module (注意 namespace),如 Util.lua:

Util = {}function Util.Quote(Str)return string.format('%q', Str)
endreturn Util

為了避免 global variable 與 local 衝突,請使用 strict.lua,會強迫所有 global variable 都先行定義:

require 'strict'local function Test()A = 2B = 3
endA = 1
Test()
-- 會產生 assign to undeclared variable 'B' 的錯誤提醒

找出 global variable 的方式:

luac -l -p file_name.lua

multitask

用法仍須看文件:

coroutine.yield()
coroutine.resume()
coroutine.wrap()
coroutine.create()
coroutine.status()
coroutine.suspended()
coroutine.running()
coroutine.normal()
coroutine.dead()

使用 c lib

其實就是把編譯好的 .so 放到特定目錄中,但詳情還是要看官網

很多參考資料

http://www.lua.org/docs.html

转载于:https://www.cnblogs.com/artstyle/archive/2012/07/24/2605956.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/434407.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

x-lite asterisk 成功实现视频通话

首先&#xff0c;在此感谢asterisk协会的各位大牛们&#xff0c;没有他们的帮助&#xff0c;我也不可能在这么短的时间内实现&#xff0c;x-liteasterisk音视频通话。在此将实现的过程记录如下&#xff0c;分享给asterisk的爱好者们。 1. 修改asterisk服务器的sip.conf文件&…

axure 链接html文件,通过WuliHub免费托管原型Axure HTML文件

产品经理常用的工具就是Axure&#xff0c;通过Axure把想法转化成包含交互的原型线框图。在工作中&#xff0c;我们用HTML文件传递不仅会遇到某些浏览器无法打开的问题&#xff0c;而且没有办法及时更新内容。所以&#xff0c;介绍一种简单的并且免费的方式来方便管理HTML原型&a…

字符串解析

匹配&#xff0c;求公共串&#xff0c;。。。转载于:https://www.cnblogs.com/mathzzz/archive/2012/07/24/2607115.html

语音编码分类及编解码标准

G.711类型&#xff1a;Audio 制定者&#xff1a;ITU-T 所需频宽&#xff1a;64Kbps 特性&#xff1a;算法复杂度小&#xff0c;音质一般 优点&#xff1a;算法复杂度低&#xff0c;压缩比小&#xff08;CD音质>400kbps&#xff09;&#xff0c;编解码延时最短&#xff08…

html日期只显示7天,vue+elementui 只能选7天内的日期

html:查询时间至js:data() {const _this this;const dateScope 7 * 24 * 3600 * 1000;return {pickerStart: {disabledDate(time) {const endLen _this.endDate;if (endLen 0 || endLen "" || endLen null) {return time.getTime() > Date.now();}const dat…

各种路径的获取方法

转http://blog.csdn.net/banyingli/article/details/6124995 根据文件名来获取文件路径&#xff08;Document目录下&#xff09; //根据文件名来获取文件路径 - (NSString *)dataFilePath:(NSString *)sender { NSArray *path NSSearchPathForDirectoriesInDomains(NSDo…

Asterisk SIP连通测试(X-Lite eyebeam)

Step1:设置 sip.conf rootUbuntu:/etc/asterisk# vim sip.conf [general] //类似与全局变量 context default srvlookup yes //DNS SRV记录查询 [111] secretaaa //密码&#xf…

html多出的空白页怎么删除,word多出一页空白页怎么删除,这4个方法总有一个能解决,真实挂机网赚项目...

信赖大多数人都碰到过这样的难题&#xff0c;在编辑Word文档的时刻&#xff0c;是不是在中心或者是最后一页&#xff0c;莫名其妙的泛起空白页&#xff0c;而且这个空白页怎么删都删不掉。不要着急&#xff0c;今天就给人人分享4种简朴又好用的解决方式&#xff0c;总有一种能让…

sip.conf配置详情

[2001] typefriend contextLocalSets hostdynamic natyes canreinviteno secret123456 dfmfmoderfc2833 disallowall allowulaw allowalaw allowh263 说明&#xff1a; &#xff08;1&#xff09;type&#xff1a;sip的类型。格式&#xff1a;type user|peer|fr…

centos永久关闭防火墙

新安装完CentOS Linux&#xff0c;发现配置完apache后没法访问&#xff0c;估计是防火墙问题。 /etc/init.d/iptables status 会得到一系列信息&#xff0c;说明防火墙开着。 /etc/init.d/iptables stop 永久关闭: chkconfig --level 35 iptables off转载于:https://www.cnblog…

微型计算机原理上机实验改错,北京理工大学微机原理汇编语言上机实验题

实验一请在数据段中定义两个数&#xff0c;要求编写程序分别计算出这两个数的和、差、积、商&#xff0c;并用Debug 的相关命令查询计算结果。(略)实验二内存自TABLE开始的连续16个单元中存放着0&#xff0d;15的平方值&#xff0c;查表求DATA中任意数X(0≤X ≤15)的平方值&…

Asterisk配置SIP服务器

要配置SIP服务器&#xff0c;前提是要先安装了Asterisk1.编辑sip.conf 进入到/etc/asterisk 后&#xff0c;vi sip.conf [general] allowoverlapno bindport5060 bindaddr0.0.0.0 srvlookupyes qualifyyes contexttest [1001] typefriend secrettest hostdynamic [1002] typefr…

linq to json for sl

一.Linq to JSON是用来干什么的?Linq to JSON是用来操作JSON对象的.可以用于快速查询,修改和创建JSON对象.当JSON对象内容比较复杂,而我们仅仅需要其中的一小部分数据时,可以考虑使用Linq to JSON来读取和修改部分的数据而非反序列化全部. 二.创建JSON数组和对象在进行Linq to…

计算机组装与维护实验指导,计算机组装与维护实验指导书.pdf

第 1 页计算机组装与维护实验指导书计算机组装与维护实 验 手 册姓名&#xff1a; 专业&#xff1a; 班级&#xff1a;第 2 页计算机组装与维护实验指导书目 录实验一 初识计算机部件组成(0.5 学时) ……………….. 3实验二 认识主板(0.5 学时) …………………………….. 5实验…

编程是一种艺术创作

软件正在吞噬世界 “软件正在吞噬世界。”——马克 安德森 马克 • 安德森 在新一轮的信息技术革命中&#xff0c;我们已经见证&#xff0c;软件对社会生产的方方面面&#xff0c;产生了深刻的影响&#xff0c;它们侵入并颠覆了已经建立起来的行业架构。越来越多的大企业和行业…

计算机支持协同工作不是多媒体应用,计算机支持的协同工作概观.PDF

计算机支持的协同工作概观维普资讯第 2卷第 3期 工 业 工 程 V0I&#xff0e;2No&#xff0e;3I999年 9月 SeP&#xff0e;1999计算机支持的协同工作概观汤 庸(广东_1_业大学 计算机科学 j上程系 广东 广州 510o9o)摘要 &#xff1a;cscw是 门多学科交叉的新 课题 率文介绍 csc…

loss值多少才算收敛_一个家庭一年要存多少钱才算正常?国家统计局给出“答案”...

阅读本文前&#xff0c;请您先点击上面的蓝色字体&#xff0c;再点击“关注”&#xff0c;这样您就可以继续免费收到最新文章了。每天都有分享。完全是免费订阅&#xff0c;请放心关注。免责声明&#xff1a;本文来源于网络&#xff0c;如有侵权请联系作者删除。“手里有粮&…

Asterisk权威指南/第三章 安装Asterisk

在这一章我们将详细介绍如何从源代码安装Asterisk。很多人回避这种方法&#xff0c;说它太难了&#xff0c;又耗时间。我们在这里想证明的是从源代码安装Asterisk其实没那么难。更重要的是&#xff0c;我们想为你提供一个最好的Asterisk安装&#xff0c;以便学习。 在本书中&a…

郑州升达经贸管理学院计算机专业学费,郑州升达经贸管理学院学费

郑州升达经贸管理学院学费2020-07-10 13:17:19文/叶丹2020年郑州升达经贸管理学院文科类本科专业学费15000元/年&#xff1b;郑州升达经贸管理学院理科类本科专业学费16000元/年。一般情况下&#xff0c;艺术类专业学费比普通专业高一些。郑州升达经贸管理学院依据省(市区)教育…

逻辑左移

逻辑左移转载于:https://www.cnblogs.com/LoveFishC/archive/2012/07/28/3846647.html