java与c#中二维数组的区别 - 编程入门网
java与c#中二维数组的区别时间:2007-05-30java中使用二维数组 public class Array2D...{ public static void main(String[] args)...{ int myInt[][]=new int[5][10]; //遍历,给数组中的每一个数组赋值 for(int i=0;i<myInt.length;i++)...{ for(int j=0;j<myInt[0].length;j++)...{ myInt[i][j]=i*j; } } System.out.println ("myInt.length="+myInt.length+",myInt[0].length="+myInt[0].length); //输出数组每一维的下限和上限 for(int i=0;i<myInt.length;i++)...{ for(int j=0;j<myInt[0].length;j++)...{ System.out.println ("myInt["+i+"]["+j+"]="+myInt[i][j]); } } }} 在C#中int[][] myInt是声明一个交错数组,声明二维数组是这么声明int[,] myInt,上面的代码如果换成C#的,需要如下表示: class clsArrat2D{/**//// <summary>/// 应用程序的主入口点。/// </summary>[STAThread]static void Main(string[] args){int[,] myInt=new int[5,10];//遍历,给数组中的每一个数组赋值for(int i=myInt.GetLowerBound(0);i<=myInt.GetUpperBound(0);i++){for(int j=myInt.GetLowerBound(1);j<=myInt.GetUpperBound(1);j++){myInt[i,j]=i*j;}}//输出数组每一维的下限和上限for(int i=0;i<myInt.Rank;i++){Console.WriteLine("{0} {1} {2}", i, myInt.GetLowerBound(i), myInt.GetUpperBound(i));}//遍历,输出二维数组中每一个元素的个数for(int i=myInt.GetLowerBound(0);i<=myInt.GetUpperBound(0);i++){for(int j=myInt.GetLowerBound(1);j<=myInt.GetUpperBound(1);j++){Console.WriteLine("myInt[{0},{1}]={2}",i,j,myInt[i,j]);}}Console.ReadLine();}} |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |