Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (seongtaejeong at gmail.com)
홈페이지
첨부 파일

(시리즈 글이 9개 있습니다.)
닷넷: 2275. C# 13 - (1) 신규 이스케이프 시퀀스 '\e'
; https://www.sysnet.pe.kr/2/0/13673

닷넷: 2277. C# 13 - (2) 메서드 그룹의 자연 타입 개선 (메서드 추론 개선)
; https://www.sysnet.pe.kr/2/0/13681

닷넷: 2286. C# 13 - (3) Monitor를 대체할 Lock 타입
; https://www.sysnet.pe.kr/2/0/13699

닷넷: 2287. C# 13 - (4) Indexer를 이용한 개체 초기화 구문에서 System.Index 연산자 허용
; https://www.sysnet.pe.kr/2/0/13701

닷넷: 2291. C# 13 - (5) params 인자 타입으로 컬렉션 허용
; https://www.sysnet.pe.kr/2/0/13705

닷넷: 2294. C# 13 - (6) iterator 또는 비동기 메서드에서 ref와 unsafe 사용을 부분적으로 허용
; https://www.sysnet.pe.kr/2/0/13710

닷넷: 2303. C# 13 - (7) ref struct의 interface 상속 및 제네릭 제약으로 사용 가능
; https://www.sysnet.pe.kr/2/0/13752

닷넷: 2304. C# 13 - (8) 부분 메서드 정의를 속성 및 인덱서에도 확대
; https://www.sysnet.pe.kr/2/0/13754

닷넷: 2305. C# 13 - (9) 메서드 바인딩의 우선순위를 지정하는 OverloadResolutionPriority 특성 도입 (Overload resolution priority)
; https://www.sysnet.pe.kr/2/0/13755




C# 13 - (4) Indexer를 이용한 개체 초기화 구문에서 System.Index 연산자 허용

개인적으로는 한 번도 써보려고 시도조차 하지 않았던 구문에 대한 지원이 추가됐습니다. ^^

Implicit index access
; https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-13#implicit-index-access

Support implicit indexer access in object initializers #70649
; https://github.com/dotnet/roslyn/pull/70649

예를 들어, 사용자 타입 내에 확정된 배열을 가진 멤버가 있는 경우,

public class MyFixedArrayType
{
    public int[] Numbers = new int[5];
}

이것을 초기화할 때 (C# 8에 추가한) 범위 연산자 중 하나인 "^" (System.Index) 연산자를 사용할 수 있게 됐습니다.

MyFixedArrayType m = new MyFixedArrayType()
{
    Numbers = {
        [^1] = 0,
        [^2] = 1,
        [^3] = 2,
        [^4] = 3,
        [^5] = 4,
    } // Numbers = { 4, 3, 2, 1, 0 }
};

물론, 표현할 수 있게 되었으니 긍정적일 수는 있으나 사실 그다지 자주 쓰일만한 구문은 아닙니다. 가령, 위의 코드를 타입 수준에서 배열 멤버의 길이를 미리 지정하지 않는다면,

public class MyArrayType
{
    public int[]? Numbers;
}

이를 초기화할 때는 ^ 연산자를 사용할 수 없습니다. (컴파일 오류가 발생합니다.)

MyArrayType m = new MyArrayType()
{
    Numbers = new int[5] {
        [^1] = 0, // error CS0131: The left-hand side of an assignment must be a variable, property or indexer
    }
};

또한, List 타입인 경우라면 컴파일까지는 가능하지만,

List<int> m = new List<int>(5) // 5개의 공간을 확보했지만,
{
    [^1] = 0,
};

(공간을 확보했음에도) 실행 시 System.ArgumentOutOfRangeException 예외가 발생합니다.

System.ArgumentOutOfRangeException: 'Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')'

왜냐하면, C# 컴파일러는 위의 코드를 다음과 같이 해석하기 때문에,

List<int> list = new List<int>(5);
int num = list.Count - 1;   // Capacity가 아닌 Count를 사용하기 때문에,
                            // num == -1이 되고,
list[num] = 0; // 이 코드에서 음수 인덱스를 사용하는 결과가 돼 예외 발생

오류가 발생하는 것이 당연합니다. 그래도 그나마 현실적인 사용 예가 다음의 이슈에 나오는데요,

Implicit index indexer doesn't work in object initializer #67533
; https://github.com/dotnet/roslyn/issues/67533

위의 이슈에 있는 코드는 타입 내에 indexer 멤버를 정의하고 있어 동적인 배열 정의가 가능합니다. 즉, 다음과 같은 식으로 감싸서 제공할 수 있는데요,

public class MyIndxerType
{
    char[] _nubmers;

    public MyIndxerType(int count)
    {
        _nubmers = new char[count];
    }

    public int Count => _nubmers.Length;

    public char this[int index]
    {
        get => _nubmers[index];
        set => _nubmers[index] = value;
    }
}

이런 경우, ^ 연산자를 사용해 자연스럽게 초기화할 수 있습니다.

MyIndxerType m = new MyIndxerType(10)
{
    [^1] = '\0'
};

가장 마지막 글자에 '\0'을 넣어주는 코드인데요, 만약 인덱스 연산자를 사용하지 못한다면 아래와 같이 별도로 초기화하는 구문을 추가해야 합니다.

MyIndxerType m = new MyIndxerType(10);

m[m.Length - 1] = '\0'; // C# 12 이하에선 이렇게 나눠서 초기화
// 또는,
m[^1] = '\0';

저런 경우라면, 편할 수 있겠다는 수긍은 가지만... ^^; 과연 저런 코드로 사용 빈도까지 고려한다면 그냥 잊고 살아도 좋을 신규 문법인 듯합니다. (혹시 이 글을 읽어보시는 분 중에, 저 기능이 아쉬웠던 분이 계셨다면 덧글 부탁드립니다. )




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 8/6/2024]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 121  122  123  124  125  126  127  128  129  [130]  131  132  133  134  135  ...
NoWriterDateCnt.TitleFile(s)
1806정성태11/10/201425137.NET Framework: 477. SeCreateGlobalPrivilege 특권과 WCF NamedPipe
1805정성태11/5/201422000.NET Framework: 476. Visual Studio에서 Mono용 Profiler 개발 [3]파일 다운로드1
1804정성태11/5/201428256.NET Framework: 475. ETW(Event Tracing for Windows)를 C#에서 사용하는 방법 [9]파일 다운로드1
1803정성태11/4/201420351오류 유형: 261. Windows Server Backup 오류 - Error in backup of E:\$Extend\$RmMetadata\$TxfLog
1802정성태11/4/201422280오류 유형: 260. 이벤트 로그 - Windows Error Reporting / AEAPPINVW8
1801정성태11/4/201427612오류 유형: 259. 이벤트 로그 - Windows Error Reporting / IPX Assertion / KorIME.exe [1]
1800정성태11/4/201418270오류 유형: 258. 이벤트 로그 - Starting a SMART disk polling operation in Automatic mode.
1799정성태11/4/201423071오류 유형: 257. 이벤트 로그 - The WMI Performance Adapter service entered the stopped state.
1798정성태11/4/201431862오류 유형: 256. 이벤트 로그 - The WinHTTP Web Proxy Auto-Discovery Service service entered the stopped state. [1]
1797정성태11/4/201417585오류 유형: 255. 이벤트 로그 - The Adobe Flash Player Update Service service entered the stopped state.
1796정성태10/30/201424549개발 환경 구성: 249. Visual Studio 2013에서 Mono 컴파일하는 방법
1795정성태10/29/201427083개발 환경 구성: 248. Lync 2013 서버 설치 방법
1794정성태10/29/201422503개발 환경 구성: 247. "Microsoft Office 365 Enterprise E3" 서비스에 대한 간략 소개
1793정성태10/27/201423163.NET Framework: 474. C# - chromiumembedded 사용 - 두 번째 이야기 [2]파일 다운로드1
1792정성태10/27/201423286.NET Framework: 473. WebClient 객체에 쿠키(Cookie)를 사용하는 방법
1791정성태10/22/201423010VC++: 83. G++ - 템플릿 클래스의 iterator 코드 사용에서 발생하는 컴파일 오류 [5]
1790정성태10/22/201418537오류 유형: 254. NETLOGON Service is paused on [... AD Server...]
1789정성태10/22/201421213오류 유형: 253. 이벤트 로그 - The client-side extension could not remove user policy settings for '...'
1788정성태10/22/201423239VC++: 82. COM 프로그래밍에서 HRESULT 타입의 S_FALSE는 실패일까요? 성공일까요? [2]
1787정성태10/22/201431408오류 유형: 252. COM 개체 등록시 0x8002801C 오류가 발생한다면?
1786정성태10/22/201432734디버깅 기술: 65. 프로세스 비정상 종료 시 "Debug Diagnostic Tool"를 이용해 덤프를 남기는 방법 [3]파일 다운로드1
1785정성태10/22/201421943오류 유형: 251. 이벤트 로그 - Load control template file /_controltemplates/TaxonomyPicker.ascx failed [1]
1784정성태10/22/201430030.NET Framework: 472. C/C++과 C# 사이의 메모리 할당/해제 방법파일 다운로드1
1783정성태10/21/201423493VC++: 81. 프로그래밍에서 borrowing의 개념
1782정성태10/21/201420220오류 유형: 250. 이벤트 로그 - Application Server job failed for service instance Microsoft.Office.Server.Search.Administration.SearchServiceInstance
1781정성태10/21/201420681디버깅 기술: 64. new/delete의 짝이 맞는 경우에도 메모리 누수가 발생한다면?
... 121  122  123  124  125  126  127  128  129  [130]  131  132  133  134  135  ...