摘要:
用C的时候,语言只有一个数组类型,好像没有动态数组,要用的话需要自己构造。用C++的话,可以用STL中的vector;用C#的时候,因为数组已经是一种引用类型,每次都需要在堆上new它,所以创建运行时动态大小的数组已经成为了可能,如下: int n = Int32.Parse(Console.ReadLine()); int[] ia_test = new int[n]; Console.Writ... 阅读全文
posted @ 2010-06-02 17:40 szh114 阅读(1258) 评论(0) 推荐(0) 编辑