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

비밀번호

댓글 작성자
 




... 61  [62]  63  64  65  66  67  68  69  70  71  72  73  74  75  ...
NoWriterDateCnt.TitleFile(s)
12425정성태11/24/202019371VC++: 141. Visual C++ - "Treat Warnings As Errors" 옵션이 꺼져 있는데도 일부 경고가 에러 처리되는 경우
12424정성태11/24/202019621VC++: 140. C++의 연산자 동의어(operator synonyms), 대체 토큰 [1]
12423정성태11/22/202019639.NET Framework: 974. C# 9.0 - (16) 제약 조건이 없는 형식 매개변수 주석(Unconstrained type parameter annotations)파일 다운로드1
12422정성태11/21/202017126.NET Framework: 973. .NET 5, .NET Framework에서만 허용하는 UnmanagedCallersOnly 사용예파일 다운로드1
12421정성태11/19/202016206.NET Framework: 972. DNNE가 출력한 NE DLL을 직접 생성하는 방법파일 다운로드1
12420정성태11/19/202016781오류 유형: 684. Visual C++ - MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance
12419정성태11/19/202017067VC++: 139. Visual C++ - .NET Core의 nethost.lib와 정적 링크파일 다운로드1
12418정성태11/19/202019221오류 유형: 683. Visual C++ - error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug'파일 다운로드1
12417정성태11/19/202017701오류 유형: 682. Visual C++ - warning LNK4099: PDB '...pdb' was not found with '...lib(pch.obj)' or at '...pdb'; linking object as if no debug info
12416정성태11/19/202018806오류 유형: 681. Visual C++ - error LNK2001: unresolved external symbol _CrtDbgReport
12415정성태11/18/202018379.NET Framework: 971. UnmanagedCallersOnly 특성과 DNNE 사용파일 다운로드1
12414정성태11/18/202021117VC++: 138. x64 빌드에서 extern "C"가 아닌 경우 ___cdecl name mangling 적용 [4]파일 다운로드1
12413정성태11/17/202019776.NET Framework: 970. .NET 5 / .NET Core - UnmanagedCallersOnly 특성을 사용한 함수 내보내기파일 다운로드1
12412정성태11/16/202021816.NET Framework: 969. .NET Framework 및 .NET 5 - UnmanagedCallersOnly 특성 사용파일 다운로드1
12411정성태11/12/202018329오류 유형: 680. C# 9.0 - Error CS8889 The target runtime doesn't support extensible or runtime-environment default calling conventions.
12410정성태11/12/202019224디버깅 기술: 174. windbg - System.TypeLoadException 예외 분석 사례
12409정성태11/12/202020886.NET Framework: 968. C# 9.0의 Function pointer를 이용한 함수 주소 구하는 방법파일 다운로드1
12408정성태11/9/202035892도서: 시작하세요! C# 9.0 프로그래밍 [8]
12407정성태11/9/202020959.NET Framework: 967. "clr!JIT_DbgIsJustMyCode" 호출이 뭘까요?
12406정성태11/8/202021914.NET Framework: 966. C# 9.0 - (15) 최상위 문(Top-level statements) [5]파일 다운로드1
12405정성태11/8/202020395.NET Framework: 965. C# 9.0 - (14) 부분 메서드에 대한 새로운 기능(New features for partial methods)파일 다운로드1
12404정성태11/7/202021008.NET Framework: 964. C# 9.0 - (13) 모듈 이니셜라이저(Module initializers)파일 다운로드1
12403정성태11/7/202019072.NET Framework: 963. C# 9.0 - (12) foreach 루프에 대한 GetEnumerator 확장 메서드 지원(Extension GetEnumerator)파일 다운로드1
12402정성태11/7/202021329.NET Framework: 962. C# 9.0 - (11) 공변 반환 형식(Covariant return types) [1]파일 다운로드1
12401정성태11/5/202020650VS.NET IDE: 153. 닷넷 응용 프로그램에서의 "My Code" 범위와 "Enable Just My Code"의 역할 [1]
12400정성태11/5/202016667오류 유형: 679. Visual Studio - "Source Not Found" 창에 "Decompile source code" 링크가 없는 경우
... 61  [62]  63  64  65  66  67  68  69  70  71  72  73  74  75  ...