ArrayList<T>

数组,封装自std::vector<T>,一般用于返回值。

属性

使用

for i = 1, arrayList.length do
    local element = arrayList[i]
    -- do something on this element
end

Last updated