Topic: 请教:向一个数组中添加元素的方法 |
Print this page |
1.请教:向一个数组中添加元素的方法 | Copy to clipboard |
Posted by: wisewl Posted on: 2006-12-26 16:02 我想向一数组中添加一个元素 int array[]={1,2,3}; array[arry.length]=4; 程序会出错,请问该如何动态的向数组中添加元素呢? 谢谢! |
2.Re:请教:向一个数组中添加元素的方法 [Re: wisewl] | Copy to clipboard |
Posted by: lisliefor Posted on: 2006-12-26 19:30 array.length 数值为3,而array[3]指的是数组的第四个元素(第一个元素是array[0]),这里数组越界。并不是不能修改他值。 |
3.Re:请教:向一个数组中添加元素的方法 [Re: wisewl] | Copy to clipboard |
Posted by: Dollyn Posted on: 2006-12-27 13:04 数组是定长的,不能动态增加长度。 |
4.Re:请教:向一个数组中添加元素的方法 [Re: wisewl] | Copy to clipboard |
Posted by: ycxct Posted on: 2007-01-02 17:38 用List吧,数组定长的 |
5.Re:请教:向一个数组中添加元素的方法 [Re: ycxct] | Copy to clipboard |
Posted by: why Posted on: 2007-01-02 19:23 ycxct wrote: perhaps ArrayList |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |