黑马程序员技术交流社区
标题:
如何把一个Array 复制到ArrayList中?
[打印本页]
作者:
Kaitong
时间:
2014-4-4 23:49
标题:
如何把一个Array 复制到ArrayList中?
本帖最后由 Kaitong 于 2014-4-5 21:04 编辑
用哪种方法好些?最好能有个例子,谢谢
作者:
许庭洲
时间:
2014-4-5 07:12
class Program
{
static void Main()
{
int[] arr = { 0, 1, 2, 3, 4 };
List<int> list = new List<int>();
for (int x = 5; x < 10; x++)
{
list.
Add
(x);
}
ProcessItems<int>(arr);
ProcessItems<int>(list);
}
static void ProcessItems<T>(IList<T> coll)
{
foreach (T item in coll)
{
System.Console.Write(item.ToString() + " ");
}
System.Console.WriteLine();
}
}
作者:
threederek
时间:
2014-4-5 08:54
遍历Array,在遍历中调用ArrayList.Add()逐条添加
作者:
mdb
时间:
2014-4-5 13:13
int[] it = new int[] { 1, 2, 3, 4, 5, 6 };
ArrayList al = new ArrayList();
al.AddRange(it);
复制代码
不知道是不是这样
作者:
王雪冬
时间:
2014-4-5 14:04
目前我也是学习.NET 浏览你们的问题学习学习
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2