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)
12211정성태4/27/202019321개발 환경 구성: 486. WSL에서 Makefile로 공개된 리눅스 환경의 C/C++ 소스 코드 빌드
12210정성태4/20/202020800.NET Framework: 903. .NET Framework의 Strong-named 어셈블리 바인딩 (1) - app.config을 이용한 바인딩 리디렉션 [1]파일 다운로드1
12209정성태4/13/202017469오류 유형: 614. 리눅스 환경에서 C/C++ 프로그램이 Segmentation fault 에러가 발생한 경우 (2)
12208정성태4/12/202016069Linux: 29. 리눅스 환경에서 C/C++ 프로그램이 Segmentation fault 에러가 발생한 경우
12207정성태4/2/202015971스크립트: 19. Windows PowerShell의 NonInteractive 모드
12206정성태4/2/202018529오류 유형: 613. 파일 잠금이 바로 안 풀린다면? - The process cannot access the file '...' because it is being used by another process.
12205정성태4/2/202015173스크립트: 18. Powershell에서는 cmd.exe의 명령어를 지원하진 않습니다.
12204정성태4/1/202015206스크립트: 17. Powershell 명령어에 ';' (semi-colon) 문자가 포함된 경우
12203정성태3/18/202018049오류 유형: 612. warning: 'C:\ProgramData/Git/config' has a dubious owner: '...'.
12202정성태3/18/202021282개발 환경 구성: 486. .NET Framework 프로젝트를 위한 GitLab CI/CD Runner 구성
12201정성태3/18/202018516오류 유형: 611. git-credential-manager.exe: Using credentials for username "Personal Access Token". [1]
12200정성태3/18/202018596VS.NET IDE: 145. NuGet + Github 라이브러리 디버깅 관련 옵션 3가지 - "Enable Just My Code" / "Enable Source Link support" / "Suppress JIT optimization on module load (Managed only)"
12199정성태3/17/202016245오류 유형: 610. C# - CodeDomProvider 사용 시 Unhandled Exception: System.IO.DirectoryNotFoundException: Could not find a part of the path '...\f2_6uod0.tmp'.
12198정성태3/17/202019603오류 유형: 609. SQL 서버 접속 시 "Cannot open user default database. Login failed."
12197정성태3/17/202018961VS.NET IDE: 144. .NET Core 콘솔 응용 프로그램을 배포(publish) 시 docker image 자동 생성 - 두 번째 이야기 [1]
12196정성태3/17/202016032오류 유형: 608. The ServicedComponent being invoked is not correctly configured (Use regsvcs to re-register).
12195정성태3/16/202018352.NET Framework: 902. C# - 프로세스의 모든 핸들을 열람 - 세 번째 이야기
12194정성태3/16/202021039오류 유형: 607. PostgreSQL - Npgsql.NpgsqlException: sorry, too many clients already
12193정성태3/16/202018045개발 환경 구성: 485. docker - SAP Adaptive Server Enterprise 컨테이너 실행 [1]
12192정성태3/14/202020045개발 환경 구성: 484. docker - Sybase Anywhere 16 컨테이너 실행
12191정성태3/14/202021123개발 환경 구성: 483. docker - OracleXE 컨테이너 실행 [1]
12190정성태3/14/202015742오류 유형: 606. Docker Desktop 업그레이드 시 "The process cannot access the file 'C:\Program Files\Docker\Docker\resources\dockerd.exe' because it is being used by another process."
12189정성태3/13/202021342개발 환경 구성: 482. Facebook OAuth 처리 시 상태 정보 전달 방법과 "유효한 OAuth 리디렉션 URI" 설정 규칙
12188정성태3/13/202026120Windows: 169. 부팅 시점에 실행되는 chkdsk 결과를 확인하는 방법
12187정성태3/12/202015725오류 유형: 605. NtpClient was unable to set a manual peer to use as a time source because of duplicate error on '...'.
12186정성태3/12/202017474오류 유형: 604. The SysVol Permissions for one or more GPOs on this domain controller and not in sync with the permissions for the GPOs on the Baseline domain controller.
... 61  62  63  64  65  66  67  68  [69]  70  71  72  73  74  75  ...