本篇内容主要讲解“C#中二维数组的用法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C#中二维数组的用法”吧!C#二维数组publicclassArray2D...{ publics
本篇内容主要讲解“C#中二维数组的用法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C#中二维数组的用法”吧!
C#二维数组
publicclassArray2D...{
publicstaticvoidmain(String[]args)...{
intmyInt[][]=newint[5][10];
//遍历,给数组中的每一个数组赋值
for(inti=0;i<myInt.length;i++)...{
for(intj=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(inti=0;i<myInt.length;i++)...{
for(intj=0;j<myInt[0].length;j++)...{
System.out.println("myInt["+i+"]["+j+"]="+myInt[i][j]);
}
}
}
}
在C#中int[][] myInt是声明一个交错数组,声明C#二维数组是这么声明int[,] myInt,上面的代码如果换成C#的,需要如下表示:
classclsArrat2D { ///<summary> ///应用程序的主入口点。 ///summary> [STAThread] staticvoidMain(string[]args) { int[,]myInt=newint[5,10]; //遍历,给数组中的每一个数组赋值 for(inti=myInt.GetLowerBound(0);i<=myInt.GetUpperBound(0);i++) { for(intj=myInt.GetLowerBound(1);j<=myInt.GetUpperBound(1);j++) { myInt[i,j]=i*j; } } //输出数组每一维的下限和上限 for(inti=0;i<myInt.Rank;i++) { Console.WriteLine("{0}{1}{2}",i,myInt.GetLowerBound(i),myInt.GetUpperBound(i)); } //遍历,输出二维数组中每一个元素的个数 for(inti=myInt.GetLowerBound(0);i<=myInt.GetUpperBound(0);i++) { for(intj=myInt.GetLowerBound(1);j<=myInt.GetUpperBound(1);j++) { Console.WriteLine("myInt[{0},{1}]={2}",i,j,myInt[i,j]); } } Console.ReadLine(); } }
到此,相信大家对“C#中二维数组的用法”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
--结束END--
本文标题: C#中二维数组的用法
本文链接: https://lsjlt.com/news/294977.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0