C#中用foreach语句遍历数组及将数组作为参数的用法
作者:goldensun 时间:2022-03-14 16:25:12
对数组使用 foreach
C#提供 foreach 语句。 该语句提供一种简单、明了的方法来循环访问数组或任何可枚举集合的元素。 foreach 语句按数组或集合类型的枚举器返回的顺序处理元素,该顺序通常是从第 0 个元素到最后一个元素。 例如,以下代码创建一个名为 numbers 的数组,并使用 foreach 语句循环访问该数组:
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
借助多维数组,你可以使用相同的方法来循环访问元素,例如:
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
但对于多维数组,使用嵌套的 for 循环可以更好地控制数组元素。
将数组作为参数传递
数组可作为实参传递给方法形参。由于数组是引用类型,因此方法可以更改元素的值。
将一维数组作为参数传递
可以将初始化的一维数组传递给方法。例如,下面的语句将数组发送到 print 方法。
int[] theArray = { 1, 3, 5, 7, 9 };
PrintArray(theArray);
下面的代码显示 print 方法的部分实现。
void PrintArray(int[] arr)
{
// Method code.
}
您可以在一个步骤中初始化和传递新数组,如下面的示例所示。
PrintArray(new int[] { 1, 3, 5, 7, 9 });
示例
说明
在下面的示例中,将初始化一个字符串数组并将其作为参数传递到字符串的 PrintArray 方法。该方法显示数组的元素。接下来,调用 ChangeArray 和 ChangeArrayElement 方法以演示通过值发送数组参数时不会阻止更改这些数组元素。
代码
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
将多维数组作为参数传递
可采用与传递一维数组相同的方式将初始化的多维数组传递给方法。
int[,] theArray = { { 1, 2 }, { 2, 3 }, { 3, 4 } };
Print2DArray(theArray);
下面的代码显示 print 方法的部分声明,该方法接受一个二维数组作为其参数。
void Print2DArray(int[,] arr)
{
// Method code.
}
您可以在一个步骤中初始化和传递新数组,如下面的示例所示。
Print2DArray(new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } });
示例
说明
在下面的示例中,将初始化一个二维整数数组并将其传递到 Print2DArray 方法。该方法显示数组的元素。
代码
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#,数组,foreach
0
投稿
猜你喜欢
简单了解Java方法的定义和使用实现详解
2023-10-30 16:12:46
Android设计模式之Builder模式解析
2022-02-11 20:07:46
IDEA类存在但找不到的解决办法
2021-10-22 07:24:43
Java线程池并发执行多个任务方式
2023-08-14 16:26:03
GSON实现Java对象的JSON序列化与反序列化的实例教程
2023-11-23 12:39:02
idea springboot远程debug的操作方法
2022-11-01 00:04:31
Spring Cloud之服务监控turbine的示例
2023-04-20 23:26:44
详细讲述Java中的对象转型
2023-09-24 04:09:49
java操作excel表格详解
2021-08-20 14:35:46
在spring boot3中使用native image的最新方法
2022-05-18 17:43:14
SpringBoot事件机制相关知识点汇总
2021-05-29 06:53:45
springboot 2.0 mybatis mapper-locations扫描多个路径的实现
2023-07-12 02:30:53
Android源码 在Ubuntu上下载,编译和安装
2022-11-28 14:31:29
分析JVM源码之Thread.interrupt系统级别线程打断
2023-07-31 17:15:23
Android电量优化提高手机续航
2022-06-14 11:39:40
基于Beanutils.copyProperties()的用法及重写提高效率
2023-04-20 12:10:25
深入理解c# checked unchecked 关键字
2021-11-29 01:25:09
C#前端验证和后台验证代码实例
2023-09-17 00:21:29
浅谈springioc实例化bean的三个方法
2022-05-18 08:37:56
如何把spring boot项目部署到tomcat容器中
2023-10-08 18:53:51