java與c#中二維數組的區別

來源:互聯網
上載者:User

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語言中兩種異常的差別

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.