C#中用foreach語句遍歷數(shù)組及將數(shù)組作為參數(shù)的用法
對數(shù)組使用 foreach
C#提供 foreach 語句。 該語句提供一種簡單、明了的方法來循環(huán)訪問數(shù)組或任何可枚舉集合的元素。 foreach 語句按數(shù)組或集合類型的枚舉器返回的順序處理元素,該順序通常是從第 0 個元素到最后一個元素。 例如,以下代碼創(chuàng)建一個名為 numbers 的數(shù)組,并使用 foreach 語句循環(huán)訪問該數(shù)組:
int[] numbers = { 4, 5, 6, 1, 2, 3, -2, -1, 0 }; foreach (int i in numbers) { System.Console.Write("{0} ", i); } // Output: 4 5 6 1 2 3 -2 -1 0
借助多維數(shù)組,你可以使用相同的方法來循環(huán)訪問元素,例如:
int[,] numbers2D = new int[3, 2] { { 9, 99 }, { 3, 33 }, { 5, 55 } }; // Or use the short form: // int[,] numbers2D = { { 9, 99 }, { 3, 33 }, { 5, 55 } }; foreach (int i in numbers2D) { System.Console.Write("{0} ", i); }
輸出:
9 99 3 33 5 55
但對于多維數(shù)組,使用嵌套的 for 循環(huán)可以更好地控制數(shù)組元素。
將數(shù)組作為參數(shù)傳遞
數(shù)組可作為實參傳遞給方法形參。由于數(shù)組是引用類型,因此方法可以更改元素的值。
將一維數(shù)組作為參數(shù)傳遞
可以將初始化的一維數(shù)組傳遞給方法。例如,下面的語句將數(shù)組發(fā)送到 print 方法。
int[] theArray = { 1, 3, 5, 7, 9 }; PrintArray(theArray);
下面的代碼顯示 print 方法的部分實現(xiàn)。
void PrintArray(int[] arr) { // Method code. }
您可以在一個步驟中初始化和傳遞新數(shù)組,如下面的示例所示。
PrintArray(new int[] { 1, 3, 5, 7, 9 });
示例
說明
在下面的示例中,將初始化一個字符串數(shù)組并將其作為參數(shù)傳遞到字符串的 PrintArray 方法。該方法顯示數(shù)組的元素。接下來,調(diào)用 ChangeArray 和 ChangeArrayElement 方法以演示通過值發(fā)送數(shù)組參數(shù)時不會阻止更改這些數(shù)組元素。
代碼
class ArrayClass { static void PrintArray(string[] arr) { for (int i = 0; i < arr.Length; i++) { System.Console.Write(arr[i] + "{0}", i < arr.Length - 1 ? " " : ""); } System.Console.WriteLine(); } static void ChangeArray(string[] arr) { // The following attempt to reverse the array does not persist when // the method returns, because arr is a value parameter. arr = (arr.Reverse()).ToArray(); // The following statement displays Sat as the first element in the array. System.Console.WriteLine("arr[0] is {0} in ChangeArray.", arr[0]); } static void ChangeArrayElements(string[] arr) { // The following assignments change the value of individual array // elements. arr[0] = "Sat"; arr[1] = "Fri"; arr[2] = "Thu"; // The following statement again displays Sat as the first element // in the array arr, inside the called method. System.Console.WriteLine("arr[0] is {0} in ChangeArrayElements.", arr[0]); } static void Main() { // Declare and initialize an array. string[] weekDays = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; // Pass the array as an argument to PrintArray. PrintArray(weekDays); // ChangeArray tries to change the array by assigning something new // to the array in the method. ChangeArray(weekDays); // Print the array again, to verify that it has not been changed. System.Console.WriteLine("Array weekDays after the call to ChangeArray:"); PrintArray(weekDays); System.Console.WriteLine(); // ChangeArrayElements assigns new values to individual array // elements. ChangeArrayElements(weekDays); // The changes to individual elements persist after the method returns. // Print the array, to verify that it has been changed. System.Console.WriteLine("Array weekDays after the call to ChangeArrayElements:"); PrintArray(weekDays); } }
輸出:
Sun Mon Tue Wed Thu Fri Sat arr[0] is Sat in ChangeArray. Array weekDays after the call to ChangeArray: Sun Mon Tue Wed Thu Fri Sat arr[0] is Sat in ChangeArrayElements. Array weekDays after the call to ChangeArrayElements: Sat Fri Thu Wed Thu Fri Sat
將多維數(shù)組作為參數(shù)傳遞
可采用與傳遞一維數(shù)組相同的方式將初始化的多維數(shù)組傳遞給方法。
int[,] theArray = { { 1, 2 }, { 2, 3 }, { 3, 4 } }; Print2DArray(theArray);
下面的代碼顯示 print 方法的部分聲明,該方法接受一個二維數(shù)組作為其參數(shù)。
void Print2DArray(int[,] arr) { // Method code. }
您可以在一個步驟中初始化和傳遞新數(shù)組,如下面的示例所示。
Print2DArray(new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } });
示例
說明
在下面的示例中,將初始化一個二維整數(shù)數(shù)組并將其傳遞到 Print2DArray 方法。該方法顯示數(shù)組的元素。
代碼
class ArrayClass2D { static void Print2DArray(int[,] arr) { // Display the array elements. for (int i = 0; i < arr.GetLength(0); i++) { for (int j = 0; j < arr.GetLength(1); j++) { System.Console.WriteLine("Element({0},{1})={2}", i, j, arr[i, j]); } } } static void Main() { // Pass the array as an argument. Print2DArray(new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } }); // Keep the console window open in debug mode. System.Console.WriteLine("Press any key to exit."); System.Console.ReadKey(); } }
輸出:
Element(0,0)=1 Element(0,1)=2 Element(1,0)=3 Element(1,1)=4 Element(2,0)=5 Element(2,1)=6 Element(3,0)=7 Element(3,1)=8
相關文章
C# 創(chuàng)建、部署和調(diào)用WebService簡單示例
這篇文章主要為大家詳細介紹了C# 創(chuàng)建、部署和調(diào)用WebService的簡單示例,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-05-05DevExpress實現(xiàn)GridControl同步列頭checkbox與列中checkbox狀態(tài)
這篇文章主要介紹了DevExpress實現(xiàn)GridControl同步列頭checkbox與列中checkbox狀態(tài),需要的朋友可以參考下2014-08-08C# Winform 實現(xiàn)屏蔽鍵盤的win和alt+F4的實現(xiàn)代碼
最近在做一個惡搞程序,就是打開后,程序獲得桌面的截圖然后,然后全屏顯示在屏幕上,用戶此時則不能進行任何操作。2009-02-02