배열을 인수로 전달(C# 프로그래밍 가이드)
배열은 메서드 매개 변수의 인수로 전달될 수 있습니다. 배열은 참조 형식이므로 메서드에서 요소의 값을 변경할 수 있습니다.
1차원 배열을 인수로 전달
초기화된 1차원 배열을 메서드에 전달할 수 있습니다. 예를 들어, 다음 문에서는 인쇄 메서드에 배열을 전달합니다.
int[] theArray = { 1, 3, 5, 7, 9 };
PrintArray(theArray);
다음 코드 예제에서는 인쇄 메서드의 부분적 구현을 보여 줍니다.
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);
}
}
// Output:
// 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
다차원 배열을 인수로 전달
초기화된 다차원 배열을 메서드에 전달하는 방법은 1차원 배열을 전달하는 방법과 동일합니다.
int[,] theArray = { { 1, 2 }, { 2, 3 }, { 3, 4 } };
Print2DArray(theArray);
다음 코드에서는 2차원 배열을 인수로 사용하는 인쇄 메서드의 부분적 선언을 보여 줍니다.
void Print2DArray(int[,] arr)
{
// Method code.
}
다음 예제와 같이 새 배열을 초기화하고 전달하는 작업을 한 단계로 처리할 수 있습니다.
Print2DArray(new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } });
예제
설명
다음 예제에서는 2차원 정수 배열이 초기화되어 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();
}
}
/* Output:
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
*/