java中使用二維 數組
public class Array2D...{
public static void main(String[] args)...{
int myInt[][]=new int[5][10];
//遍曆,給數組中的每一個數組賦值
for(int i=0;i
for(int j=0;j
myInt[i][j]=i*j;
}
}
System.out.println ("myInt.length="+myInt.length+",myInt[0].length="+myInt[0].length);
//輸出數組每一維的下限和上限
for(int i=0;i
for(int j=0;j
System.out.println ("myInt["+i+"]["+j+"]="+myInt[i][j]);
}
}
}
}
在C#中int[][] myInt是聲明一個交錯數組,聲明二維數組是這麼聲明int[,] myInt,上面的代碼如果換成C#的,需要如下表示:
class clsArrat2D
{
/**////
/// 應用程式的主進入點。
///
[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
{
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();
}
}
收藏到ViVi
上一篇:Java抽象類別與介面人性化理解
下一篇:淺析Java語言中兩種異常的差別