如何在新 Vector.(100); 后将 Vector 长度增加到 200
HI All,
//已创建向量,初始长度为100。
var v:Vector. = 新向量。(100);
v[90] = "Ninety"
v[190] ="oneninety" //RangeError: Error #1125: The index 110 is out of range 100.
//如何将长度从 100 更改为 200 以在索引处存储值190 ?
HI All,
//Created Vector with the initial length of 100.
var v:Vector. = new Vector.(100);
v[90] = "Ninety"
v[190] ="oneninety" //RangeError: Error #1125: The index 110 is out of range 100.
//How to change the length from 100 to 200 to store a value at index 190
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要更改 Vector 的大小,只需设置
length
属性即可。例如:To change the size of a Vector you just set the
length
property. eg: