多重赋值注意
a,b,c = 1,2
print(c)  --无对应的赋值为nil

d,f = 1,2,3
print(d,f) --1,2 多余的舍弃了

首页 我的博客
粤ICP备17103704号