[C#,닷넷강좌]C# 배열, C# Array, 가변배열,다차원배열
[C#,닷넷강좌]C# 배열, C# Array
1. 1차원배열
선언
int[] arr = new int[3]
이 배열에는 array[0]에서 array[2]까지의 요소가 있고 배열을 생성하고 배열 요소를 기본값으로 초기화하려면 new 연산자를 사용한다. 위 예제에서는 모든 배열 요소를 0으로 초기화 한다.
같은 방법으로 문자열 요소를 저장하는 배열을 선언할 수 있는데…
string[] strArr = new string[5];
초기화
선언 시 배열을 초기화할 수 있으며, 이런 경우 차수는 초기화 목록의 요소 수로 지정되므로 별도로 지정할 필요가 없다.
int[] array1 = new int[] { 1, 3, 5 };
문자열 배열도 초기화할 수 있다.
string[] week = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
선언 시 배열을 초기화할 경우
int[] array2 = { 1, 3, 5};
string[] week = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
배열 변수를 초기화하지 않고 선언할 수 있지만 이러한 변수에 배열을 할당하려면 new 연산자를 사용해야 한다.
int[] array3;
array3 = new int[] { 1, 3, 5, 7, 9 }; // OK, 반드시 new 할 것
//array3 = {1, 3, 5, 7, 9}; // Error
값 형식 및 참조 형식 배열
SomeType[] array4 = new SomeType[10];
이 선언의 결과는 SomeType이 값 형식인지 또는 참조 형식인지에 따라 달라진다. 값 형식인 경우 문에는 요소의 배열 10개가 생성되는데, 각 배열에는 SomeType 형식이 있다. SomeType이 참조 형식인 경우 선언의 결과로 10개의 요소로 구성된 배열이 생성되며 각 요소는 null 참조로 초기화된다.
2. 다차원 배열
배열은 차원을 하나 이상 가질 수 있다.
int[,] arr = new int[4, 2]; //4행2열의 2차원배열
다음 선언은 4 x 2 x 3의 3차원 배열이다.
int[, ,] arr = new int[4, 2, 3];
배열 초기화
다음 예제처럼 선언 시에 배열을 초기화할 수 있습니다.
// Two-dimensional array.
int[,] array2D = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } };
// The same array with dimensions specified.
int[,] array2Da = new int[4, 2] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } };
// A similar array with string elements.
string[,] array2Db = new string[3, 2] { { "one", "two" }, { "three", "four" },
{ "five", "six" } };
// Three-dimensional array.
int[, ,] array3D = new int[,,] { { { 1, 2, 3 }, { 4, 5, 6 } },
{ { 7, 8, 9 }, { 10, 11, 12 } } };
// The same array with dimensions specified.
int[, ,] array3Da = new int[2, 2, 3] { { { 1, 2, 3 }, { 4, 5, 6 } },
{ { 7, 8, 9 }, { 10, 11, 12 } } };
// Accessing array elements.
System.Console.WriteLine(array2D[0, 0]);
System.Console.WriteLine(array2D[0, 1]);
System.Console.WriteLine(array2D[1, 0]);
System.Console.WriteLine(array2D[1, 1]);
System.Console.WriteLine(array2D[3, 0]);
System.Console.WriteLine(array2Db[1, 0]);
System.Console.WriteLine(array3Da[1, 0, 1]);
System.Console.WriteLine(array3D[1, 1, 2]);
// Output:
// 1
// 2
// 3
// 4
// 7
// three
// 8
// 12
또한 다음 예처럼 차수를 지정하지 않고 배열을 초기화할 수 있다.
int[,] array4 = { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } };
배열 변수를 초기화 없이 선언한 경우, 배열 변수에 배열을 할당하려면 new 연산자를 사용해야 한다.
int[,] array5;
array5 = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } }; // OK, 반드시 new할 것
//array5 = {{1,2}, {3,4}, {5,6}, {7,8}}; // Error
다음 예제는 특정 배열 요소에 값을 할당한다.
array5[2, 1] = 25;
3. 가변길이 배열
가변 배열의 요소에도 배열이 사용된다. 가변 배열의 요소는 다양한 차원과 크기를 가질 수 있는데 이러한 가변 배열을 "배열의 배열"이라고도 한다.
아래는 3개의 요소를 가진 1차원 배열의 선언이며 이 배열의 각 요소는 1차원 정수 배열이다.
int[][] onj = new int[3][];
onj를 사용하려면 먼저 요소를 초기화해야 합니다. 다음과 같이 요소를 초기화할 수 있습니다.
onj [0] = new int[3];
onj [1] = new int[4];
onj [2] = new int[2];
초기 값을 사용하여 배열 요소를 값으로 채울 수도 있는데 이 경우 배열 크기를 지정할 필요가 없다.
onj [0] = new int[] { 1, 2, 5 };
onj [1] = new int[] { 1, 2, 4, 6 };
onj [2] = new int[] { 11, 22 };
아래처럼 선언 시 배열을 초기화할 수 있다.
int[][] onj = new int[][]
{
new int[] {1,3,5,7,9},
new int[] {0,2,4,6},
new int[] {11,22}
};
아래와 같이 약식 표기를 사용할 수도 있다. 요소에 대한 기본 초기화가 없으므로 요소 초기화에는 new를 해야 한다.
int[][] onj =
{
new int[] {1,3,5,7,9},
new int[] {0,2,4,6},
new int[] {11,22}
};
가변 배열은 배열의 배열이므로, 각 요소는 참조 형식이고 null로 초기화 된다.아래 예제처럼 개별 배열 요소에 액세스할 수 있다.
onj [0][1] = 77;
onj [2][1] = 88;
가변 배열과 다차원 배열을 함께 사용할 수 있다. 아래는 서로 다른 크기의 세 개의 2차원 배열 요소를 갖는 1차원 가변 배열의 선언 및 초기화다.
int[][,] onj = new int[3][,]
{
new int[,] { {1,3}, {5,7} },
new int[,] { {0,2}, {4,6}, {8,10} },
new int[,] { {11,22}, {99,88}, {0,9} }
};
Length 메서드는 가변 배열에 포함된 배열의 수를 반환한다.
System.Console.WriteLine(onj.Length);
[결과] 3
[배열 초기화 및 출력 예제]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void ArrDisplay(params int[][] arr)
{
for (int i = 0; i < arr.Length; i++)
{
foreach (int j in arr[i])
{
Console.WriteLine(j);
}
Console.WriteLine("----------");
}
}
{
class Program
{
static void ArrDisplay(params int[][] arr)
{
for (int i = 0; i < arr.Length; i++)
{
foreach (int j in arr[i])
{
Console.WriteLine(j);
}
Console.WriteLine("----------");
}
}
static void ArrDisplay(int[,] arr)
{
foreach (int j in arr)
{
Console.WriteLine(j);
}
}
{
foreach (int j in arr)
{
Console.WriteLine(j);
}
}
static void ArrDisplay(params int[][][] arr)
{
for (int i = 0; i < arr.Length; i++)
{
for (int j = 0; j < arr[i].Length; j++)
{
foreach (int k in arr[i][j])
{
Console.WriteLine(k);
}
}
Console.WriteLine("----------");
}
}
{
for (int i = 0; i < arr.Length; i++)
{
for (int j = 0; j < arr[i].Length; j++)
{
foreach (int k in arr[i][j])
{
Console.WriteLine(k);
}
}
Console.WriteLine("----------");
}
}
static void ArrDisplay(params string[][] arr)
{
for (int i = 0; i < arr.Length; i++)
{
foreach (string j in arr[i])
{
Console.WriteLine(j);
}
Console.WriteLine("----------");
}
}
{
for (int i = 0; i < arr.Length; i++)
{
foreach (string j in arr[i])
{
Console.WriteLine(j);
}
Console.WriteLine("----------");
}
}
static void Main(string[] args)
{
// 1차원배열 (numbers).
int[] n1 = new int[3] { 2, 4, 6 };
int[] n2 = new int[] { 2, 4, 6 };
int[] n3 = { 2, 4, 6 };
{
// 1차원배열 (numbers).
int[] n1 = new int[3] { 2, 4, 6 };
int[] n2 = new int[] { 2, 4, 6 };
int[] n3 = { 2, 4, 6 };
ArrDisplay(n1, n2, n3);
// 1차원배열 (strings).
string[] s1 = new string[3] { "onj1", "oraclejava1", "onjoracle1" };
string[] s2 = new string[] { "onj2", "oraclejava2", "onjoracle2" };
string[] s3 = { "onj3", "oraclejava3", "onjoracle3" };
string[] s1 = new string[3] { "onj1", "oraclejava1", "onjoracle1" };
string[] s2 = new string[] { "onj2", "oraclejava2", "onjoracle2" };
string[] s3 = { "onj3", "oraclejava3", "onjoracle3" };
ArrDisplay(s1, s2, s3);
// 다차원배열
int[,] n4 = new int[3, 2] { { 1, 2 }, { 3, 4 }, { 5, 6 } };
int[,] n5 = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 } };
int[,] n6 = { { 1, 2 }, { 3, 4 }, { 5, 6 } };
int[,] n4 = new int[3, 2] { { 1, 2 }, { 3, 4 }, { 5, 6 } };
int[,] n5 = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 } };
int[,] n6 = { { 1, 2 }, { 3, 4 }, { 5, 6 } };
ArrDisplay(n4);
ArrDisplay(n5);
ArrDisplay(n6);
ArrDisplay(n5);
ArrDisplay(n6);
// 가변길이 배열
int[][] n7 = new int[2][] { new int[] { 2, 4, 6 }, new int[] { 1, 3, 5 } };
int[][] n8 = new int[][] { new int[] { 2, 4, 6 }, new int[] { 1, 3, 5 } };
int[][] n9 = { new int[] { 2, 4, 6 }, new int[] { 1, 3, 5 } };
int[][] n7 = new int[2][] { new int[] { 2, 4, 6 }, new int[] { 1, 3, 5 } };
int[][] n8 = new int[][] { new int[] { 2, 4, 6 }, new int[] { 1, 3, 5 } };
int[][] n9 = { new int[] { 2, 4, 6 }, new int[] { 1, 3, 5 } };
ArrDisplay(n7, n8, n9);
}
}
}
}
}
[결과]
:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
2 4 6
2 4 6
2 4 6
onj1 oraclejava1 onjoracle1
onj2 oraclejava2 onjoracle2
onj3 oraclejava3 onjoracle3
1 2 3 4 5 6
1 2 3 4 5 6
1 2 3 4 5 6
2 4 6 1 3 5
2 4 6 1 3 5
2 4 6 1 3 5
기업100%환급/오라클/자바/스프링/안드로이드/닷넷C#/웹퍼블리싱… | 12-27 | 2303 | ||
[채용예정교육]오라클자바개발잘하는신입뽑기2개월과정,교육전취… | 12-11 | 1660 | ||
53 | [평일주간100%환급]Spring,JAVA,JSP,안드로이드,C#닷넷,SQL,튜닝… | 03-15 | 1466 | |
52 | [주말]C#,ASP.NET마스터 | 01-31 | 1574 | |
51 | [기업100%환급,평일주간]SQL기초에서스키마오브젝트,PLSQL,힌트… | 01-31 | 1941 | |
50 | [기업100%환급]개발자를위한스프링,마이바티스,하이버네이트(스… | 01-31 | 1250 | |
49 | [평일주간,평일야간,주말]Spring,MyBatis,Hibernate개발자과정 | 01-19 | 1555 | |
48 | [평일야간,주말]안드로이드개발자과정(Android기초실무) | 01-11 | 1376 | |
47 | [평일야간,주말주간,주말야간]JAVA,Network&JSP&Spring,MyBatis,… | 01-03 | 1926 | |
46 | 기업100%환급/오라클/자바/스프링/안드로이드/닷넷C#/웹퍼블리싱… | 12-27 | 2303 | |
45 | [기업100%환급]자바웹개발기초과정(JAVA,JDBC,JSP,Servlet,Aajx,… | 12-19 | 1649 | |
44 | [평일주간야간, 주말]웹퍼블리싱 마스터(HTML5,CSS3,jQUERY,AJAX… | 12-14 | 1617 | |
43 | [채용예정교육]오라클자바개발잘하는신입뽑기2개월과정,교육전취… | 12-11 | 1660 | |
42 | [기업100%환급]웹퍼블리싱마스터(HTML5,CSS3,JavaScript,jQUERY) | 12-09 | 1325 | |
41 | [평일야간]닷넷(C#,Network,ADO.NET,ASP.NET)마스터 | 12-01 | 1551 | |
40 | [기업100%환급]자바기초&안드로이드개발자과정(Android전액환급… | 12-01 | 1733 | |
39 | [평일야간,주말]SQL기초에서실무까지(SQL기초,PLSQL,힌트,튜닝) | 12-01 | 1193 |
댓글 없음:
댓글 쓰기