藍鷗Unity開發基礎 二維陣列學習筆記

2021-07-16 19:35:29 字數 1540 閱讀 1992

藍鷗unity開發基礎—— 二維陣列學習筆記

一、二維陣列

有兩個下標的陣列叫做二維陣列

類似[,]陣列名=new型別[常量表示式1,常量表示式2]

int[,] numbers= new int[2,3];

[0,0] [0,1] [0,2]

[1,0] [1,1] [1,2]

舉例說明

using

system;

namespace

lesson16}}

舉例說明:

using

system;

namespace

lesson16,};

numbers[0,

1]=3;

console

.writeline (numbers[1,

2]);}}

}遍歷出二維陣列的元素:

using

system;

namespace

lesson16,};

//            numbers[0,1]=3;

console

.writeline (numbers[1,

2]);

//使用迴圈遍歷陣列

//需要兩個

for迴圈巢狀

//外層:遍歷陣列中每一行

//內層:一次遍歷某行資料中的每個元素

for(

inti = 

0; i < 

2; i++) }}

}}//foreach遍歷每乙個元素

//遍歷整個

numbers

陣列,依次獲取裡面的

int型別元素

//當我們不需要對迴圈本身的整個過程進行控制,只需要關注陣列中每個元素的時候,可以使用

foreach

foreach

(int

num 

innumbers) 

課堂源**:

using

system;

namespace

lesson16,};

//            numbers[0,1]=3;

console

.writeline (numbers[1,

2]);

//使用迴圈遍歷陣列

//需要兩個

for迴圈巢狀

//外層:遍歷陣列中每一行

//內層:一次遍歷某行資料中的每個元素

for(

inti = 

0; i < 

2; i++) 

}//foreach遍歷每乙個元素

//遍歷整個

numbers

陣列,依次獲取裡面的

int型別元素

//當我們不需要對迴圈本身的整個過程進行控制,只需要關注陣列中每個元素的時候,可以使用

foreach

foreach

(int

num 

innumbers) }}

}

藍鷗Unity開發基礎 一維陣列學習筆記

藍鷗unity開發基礎 一維陣列學習筆記 一 陣列 之前我們學過很多資料型別,今天我們來學習數字,數字也是一種資料型別,那麼,具體的陣列是如何定義的?陣列 相同資料型別的成員組成的一組資料 int型別陣列 4 7 12 3 5 陣列元素 float資料型別數字 11.5 4.62 7.1 2.21 ...

藍鷗Unity開發基礎 List

藍鷗unity開發基礎 list 一 list list是一種強型別列表 list在大多數情況下比arraylist執行的更好並且是型別安全的 using system using system.collections 使用泛型集合,需要先引入命名空間 using system.collection...

藍鷗Unity開發基礎 構造方法

藍鷗unity開發基礎 構造和析構 一 構造和析構 構造方法 構造方法時乙個特殊的方法,負責初始化物件 構造方法名必須和類名一致 構造方法沒有返回值,但可以有引數,能夠過載 構造方法可以不寫,系統會自動為類新增乙個無引數的預設構造 如果將構造方法設定為private,就不能給你再使用此構造建立例項 ...