-
Notifications
You must be signed in to change notification settings - Fork 0
/
Function.lua
98 lines (81 loc) · 1.1 KB
/
Function.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---函数的声明
--[[
function fact(n)
if n==1 then
return n
else
return n*fact(n-1)
end
end
print(fact(7))
function fun(n)
if n==1 then
return "n=1"
else
return 6
end
end
print(fun(1))
fun2=fun
print(fun2(1))
--]]
---类C#委托
--[[
tab={k1="v1",k2="v2",k3="v3"}
local function f1(k,v)
print(k.." : "..v)
end
function f2(k,v)
print(k.." "..v)
end
function testFun(tab,fun)
for k,v in pairs(tab) do
fun(k,v)
end
end
testFun(tab,f1)
testFun(tab,f2)
testFun(tab,
function (k,v)
print(k.."|"..v)
end
)
temp=testFun
temp(tab,f1)
--]]
---委托
--[[
myFunc=function (n)
print(n)
end
function NumAdd(a,b)
print(a+b)
end
function StrAdd(a,b)
print(a..b)
end
function Add(a,b,AddFunc)
AddFunc(a,b)
end
Add(1,2,NumAdd)
Add("asda","afdfs",StrAdd)
--]]
---函数的返回值
function fun()
return 1,2,3,"asda"
end
r1,r2,r3,r4=fun()
print(r1,r2,r3,r4)
---多参数函数
function test(...)
local arg={...}
print(arg)
for k,v in pairs(arg) do
print(k.." 连接 "..v)
end
end
--test()
--test(12)
--test(1,2,3)
test("asdf","asd")
test(1,"add")