본문 바로가기
Programming Language/C#

[C#] System.Array

by dbxxrud 2019. 10. 2.

 

System.Array - 배열을 만들고, 조작하고, 검색 및 정렬하여 공용 언어 런타임에서 모든 배열의 기본 클래스 역할을 수행하도록 하는 메서드를 제공해주는 배열의 기반 클래스.

 

 

예제

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Console;
using System.IO;
 
namespace Practice2
{
    class MainApp
    {
        static void Main(string[] args)
        {
            int[] arry = new int[] { 10302072 };
            WriteLine($"Type Of array : { arry.GetType()}");
            WriteLine($"Base Type Of array : {arry.GetType().BaseType}");
        }
    }
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

 

 

배열의 타입과 베이스 타입을 확일 할 수 있다.

 

따라서 System.Array의 특성과 메서드를 파악하면 배열의 특성과 메서드를 알게 된다. 예를 들면 배열의 내부 데이터를 원하는 순서대로 정렬한다던가, 특정 데이터를 배열 속에서 찾아내는 작업들을 할 수 있다. 

 

 

주요 메소드와 프로퍼티 정리

 

분류 이름 설명
정적 메소드 Sort() 배열을 정렬
Binarysearch<T>() 이진 탐색을 수행한다. 
IndexOf() 배열에서 찾고자 하는 특정 데이터의 인덱스를 반환한다.
TrueForAll<T>() 배열의 모든 요소가 지정한 조건에 부합하는지 여부를 반환한다.
Resize<T>() 배열의 크기를 재조정한다.
Clear() 배열의 모든 요소를 초기화한다. 배열이 숫자형식 기반이면 0으로, 논리 형식 기반이면 false로, 참조 형식 기반이면 null로 초기화한다.
ForEach<T>() 배열의 모든 요소에 대해 동일한 작업을 수행하게 한다.
FindIndex<T>() 배열에서 지정한 조건에 부합하는 첫 번째 요소의 인덱스를 반환한다. IndexOf() 메소드가 특정 값을 찾는데 비해, FindIndex<T>() 메소드는 지정한 조건에 바탕하여 값을 찾는다.
인스턴스 메소드 GetLength() 배열에서 지정한 차원의 길이를 반환한다. 이 메소드는 다차원 배열에서 유용하게 사용된다.
프로퍼티  Length 배열의 길이를 반환한다. 
Rank 배열의 차원은 반환한다.

 

 

예제

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Console;
using System.IO;
 
namespace Practice2
{
    class MainApp
    {
        private static bool CheckPassed(int score)
        {
            if (score >= 60)
                return true;
            else
                return false;
        }
        private static void Print(int value)
        {
            Write($"{value} ");
        }
 
        static void Main(string[] args)
        {
            int[] scores = new int[] { 8074819034 };
 
            foreach (int var in scores)
                Write($"{var} ");
            WriteLine();
 
            Array.Sort(scores); // 정렬
            Array.ForEach<int>(scores, new Action<int>(Print));
            WriteLine();
 
            WriteLine($"Number of dimensions : {scores.Rank}");
 
            WriteLine("Binary Search : 81 is at {0}",
                Array.BinarySearch<int>(scores, 81)); // 이진 탐색 수행
            WriteLine("Linear Search : 90 is at {0}",
                Array.IndexOf(scores, 90)); // 특정 데이터의 인덱스 반환
 
            WriteLine("Everyone passed ? : {0}", Array.TrueForAll<int>(scores, CheckPassed));
            // TrueForAll 메소드는 배열과 함께 조건을 검사하는 메소드를 함께 매게 변수로 받는다.
 
            int index = Array.FindIndex<int>(scores,
                delegate (int score)
                {
                    if (score < 60)
                        return true;
                    else
                        return false;
                });
            scores[index] = 61;
            // FindIndex 메소드는 특정 조건에 부합하는 메소드를 매개 변수로 받는다.
 
            WriteLine("Everyone passed ? : {0}",
                Array.TrueForAll<int>(scores, CheckPassed));
 
            WriteLine($"Old length of scores : {scores.GetLength(0)}");
 
            Array.Resize<int>(ref scores, 10); // 5였던 배열의 용량을 10으로 재조정
 
            WriteLine($"New length of scores : {scores.Length}");
 
            Array.ForEach<int>(scores, new Action<int>(Print));
            WriteLine();
 
            Array.Clear(scores, 37);
            Array.ForEach<int>(scores, new Action<int>(Print));
            WriteLine();
        }
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

 

 

 

 

 

 

참고 서적 - 이것이 C# 이다

참고 사이트 - MSDN

 

※ 혼자서 공부하며 정리하는 블로그 입니다.

잘못된 정보가 있다면 알려주세요 :)

'Programming Language > C#' 카테고리의 다른 글

[C#] 컬렉션 (Collection)  (0) 2019.10.31
[C#] 추상 프로퍼티  (0) 2019.10.15
[C#] 인터페이스의 프로퍼티  (0) 2019.10.02
[C#] 무명 형식  (0) 2019.10.02
[C#] 프로퍼티  (0) 2019.09.28