如何理解lua中的表?

问题描述 投票:0回答:1
    > polyline = {color = "blue", thickness = 2, npoints = 4, {x=0,y=0}, {x=-10,y=0}, {x=-10,y=1}, {x=0,y=1}}
    > print(polyline[2])
    table: 0x55ad5c0f3f90
    > print(polyline[2].x)
-10

为什么print(polyline [2])给出-10?

lua
1个回答
0
投票

如果不显式提供键,则将表元素分配给表构造函数中的数字键。

© www.soinside.com 2019 - 2024. All rights reserved.