在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
print("********如何实现switch-case********") local switch = { [1] = function() print ("case1") end, [2] = function() print ("case2") end, [3] = function() print ("case3") end } local a = 1 local f = switch[a] -- 如==nil 则是false if(f) then print(type(f)) f() else print("case defaule") end
|
请发表评论