摘要: Array: (需要一队数据,他们由index控制)1:内存中的样子2:Array定义方法:int[] myArrays = new Int[4];myArrays[0] = 100;myArrays[1] = 200;myArrays[2] = 300;myArrays[3] = 200;orint[] myArrays = {100,200,300,200};string[] myStrings = {"one", "two", "three","four"};3:Multi-Array定义方法:int[,] 阅读全文
posted @ 2012-11-08 05:43 若愚Shawn 阅读(518) 评论(0) 推荐(0) 编辑