日期:2011-03-22 16:16:00 来源:本站整理
java与c#中二维数组的辨别[Java编程]
本文“java与c#中二维数组的辨别[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
java中利用二维数组
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();
}
}
以上是“java与c#中二维数组的辨别[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论