您好,登錄后才能下訂單哦!
Java中怎么靜態(tài)和動態(tài)初始化一維二維數(shù)組,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
數(shù)組概述:
數(shù)組可以看成是多個相同類型數(shù)據(jù)的組合,對這些數(shù)據(jù)的統(tǒng)一管理;
數(shù)組變量屬于引用數(shù)據(jù)類型,數(shù)組也可以看成是對象,數(shù)組中的每一個元素相當(dāng)于該對象的成員變量;
數(shù)組中的元素可以是任何數(shù)據(jù)類型,包括基本數(shù)據(jù)類型和引用數(shù)據(jù)類型;
一維數(shù)組的聲明:
聲明方式: 例如; int a [ ] = new int [3];
Java語言中 聲明是不能指定其長度[數(shù)組中元素的個數(shù)];
非法聲明; int a [5];
數(shù)組對象的創(chuàng)建:
public class Test { public static void main (String args[ ] ) { int [ ] s; s = new int [5]; for(int i = 0; i < 5; i ++) { s[i] = 2 * i + 1; } } }
一維數(shù)組初始化
動態(tài)初始化:
public class Test { public static void main (String args [ ] ) { int a [ ]; a = new int [3]; //int a [ ] = {1,2,3}; Date days [ ]; days = new Date [3]; days [0] = new Date(1,4,20040); days [1] = new Date(2,4,20040); days [2] = new Date(3,4,20040); } } class Date { int year,month,day; Date (int y,int m,int d) { year = y; month = m; day = d; } }
靜態(tài)初始化
public class Test { public static void mian (String args [ ] ) { int a[ ] = new int [ ] {3,9,8}; Date days[ ] = { new Date(1,4,2004), new Date(2,4,2004), new Date(3,4,2004) }; } } class Date { int year,month,day; Date(int y,int m,int d) { year = y; month = m;day = d; } }
二維數(shù)組
二維數(shù)組可以看成數(shù)組為元素的數(shù)組,例如:
int a [ ][ ] = {{1,2},{3,4,5,6},{7,8,9}};
二維數(shù)組初始化
靜態(tài)初始化:
int intA [ ] [ ] = {{1,2},{2,3},{3,4,5}}; int intB [ 3] [ 2] = {{1,2},{2,4},{4,5}}; 非法
動態(tài)初始化:
int a [ ] [ ] = new int [3] [5]; int b [ ] [ ] = new int [3] [ ]; b[0] = new int [2]; b[1] = new int [3]; b[2] = new int [5];
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。