Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 1개 있습니다.)

C# - 조건 연산자(?:)를 사용하는 경우 달라지는 메서드 선택 사례

이번 C# 9.0의 "target-typed conditional expression" 제안 문서를 보면,

Target-Typed Conditional Expression
; https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-9.0/target-typed-conditional-expression

재미있는 예제가 하나 나옵니다. 이것을 정리해 보면, 예를 들어 다음과 같이 호출하는 경우와,

using System;

class Program
{
    static void Main(string[] args)
    {
        M(1);
        M(2);
    }

    static void M(short n) { Console.WriteLine("Short"); }
    static void M(long n) { Console.WriteLine("Long"); }
}

/* 출력 결과
Short
Short
*/

3항 연산자로 다루는 경우가 다르다는 점입니다.

using System;

class Program
{
    static void Main(string[] args)
    {
        M((args.Length == 0) ? 1 : 2);
        M((args.Length == 1) ? 1 : 2);
    }

    static void M(short n) { Console.WriteLine("Short"); }
    static void M(long n) { Console.WriteLine("Long"); }
}

/* 출력 결과
Long
Long
*/




이에 대해 정확히 파악하려면, 언어 명세를 봐야 합니다. 실제로 아래의 문서를 보면,

Constant expressions
; https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/language-specification/expressions#constant-expressions

명확하게 "Constant expressions"에 대해,

constant_expression
    : expression
    ;

숫자형의 범위에 따라 암시적인 형변환을 허용한다고 명시하고 있습니다.

An implicit constant expression conversion (Implicit constant expression conversions) permits a constant expression of type int to be converted to sbyte, byte, short, ushort, uint, or ulong, provided the value of the constant expression is within the range of the destination type.


즉, constant_expression인 경우 -128 ~ 127 범위의 숫자 리터럴이면 그 범위에 따라 short로 암시적 형변환을 허용하는 것입니다. 반면, 예제로 들었던 조건 연산자 식은 컴파일 타임에 식 자체가 constant_expression으로 표현되는 것은 아니므로 '범위에 따른 암시적 형변환'의 혜택을 받지 못합니다.

그런데, 재미있는 것은 "Constant expressions" 문서에 보면 다음의 대상이 constant_expression으로 허용된다고 하는데,

  • Literals (including the null literal).
  • References to const members of class and struct types.
  • References to members of enumeration types.
  • References to const parameters or local variables
  • Parenthesized sub-expressions, which are themselves constant expressions.
  • Cast expressions, provided the target type is one of the types listed above.
  • checked and unchecked expressions
  • Default value expressions
  • Nameof expressions
  • The predefined +, -, !, and ~ unary operators.
  • The predefined +, -, *, /, %, <<, >>, &, |, ^, &&, ||, ==, !=, <, >, <=, and >= binary operators, provided each operand is of a type listed above.
  • The ?: conditional operator.

마지막에 조건 연산자가 나옵니다. 따라서, 메서드를 다음과 같이 호출하면,

M((3 == 4) ? 1 : 2); // M(short)

컴파일 시점에 조건 연산자 식의 값이 결정되므로 constant_expression으로 평가받게 되고 결국 M(short) 버전의 메서드가 호출됩니다.

여기서 유의할 것은, 숫자 리터럴에 대한 constant_expression의 암시적 형변환이 대상 타입으로 int가 없을 때 발생하는 것이지, 그것 자체가 값의 범위에 따라 평가받는 것은 아니라는 점입니다.

즉, 원래 숫자 리터럴의 타입은 Int32(범위를 넘어서면 Int64)입니다.

Console.WriteLine("1 == " + 1.GetType().FullName); // System.Int32
Console.WriteLine("21474836473 == " + 21474836473.GetType().FullName); // System.Int64

var tenaryResult = (3 == 4) ? 1 : 2;
Console.WriteLine(tenaryResult.GetType().FullName); // System.Int32

그래서 만약 M(int)에 해당하는 메서드가 있었다면 M(1)로 호출해도 constant_expression의 암시적 형변환 단계를 거칠 필요 없이 M(int) 메서드가 선택이 됩니다.




그런데, 재미있는 경우가 하나 더 있습니다. C# 8.0에서 나온 새로운 switch expression은,

{
    bool result = args.Length == 1;
    M(result switch { true => 1, false => 2 }); // calls M(short)
}

코딩 결과로 보면 조건 연산자와 동일한 역할을 하지만 short 버전의 메서드가 선택된다는 것입니다. 이것 역시 언어 명세를 보면 이에 대한 설명이 나옵니다.

Switch Expression
; https://github.com/dotnet/csharplang/blob/a17f4c8ba82ed19fdad8b9f86ac151a443c89b08/proposals/csharp-8.0/patterns.md#switch-expression

The type of the switch_expression is the best common type of the expressions appearing to the right of the => tokens of the switch_expression_arms if such a type exists and the expression in every arm of the switch expression can be implicitly converted to that type.


즉, switch 식의 경우에는 모든 조건의 우측 operand를 기준으로 평가를 진행해 암시적 형변환 유무를 결정한다는 것입니다. 아마도 C# 언어 개발자들은 조건 연산자에 대해서도 2항과 3항 operand를 모두 평가해 암시적 형변환을 결정하는 것도 가능했을 것입니다. 하지만, 최초 C# 1.0 버전에서 그 작업을 진행하지 않았었고, 이후 버전 업이 되면서 그것을 switch 식처럼 모두 평가해 타입을 결정하는 것으로 변경했다면 하위 호환성이 깨지는 이유로 그대로 두었을 가능성이 큽니다. (어느 날 C# 9.0으로 빌드했는데 프로그램 동작이 바뀐다면 얼마나 황당하겠습니까? ^^;)




언어 스펙에 따른 원인을 밝혔으니, 마지막으로 IL 코드 상의 차이점을 파악해 볼까요? ^^ (사실 IL 코드까지 출력된 상황에서는 이미 언어 스펙 상의 타입 결정이 완료된 상태이므로 큰 의미는 없습니다.)

첫 번째의 경우처럼 1과 2를 직접 전달하거나,

/* 0x000002B6 17           */ IL_005A: ldc.i4.1
/* 0x000002B7 2802000006   */ IL_005B: call      void ConsoleApp2.Program::M(int16)
/* 0x000002BC 00           */ IL_0060: nop
/* 0x000002BD 18           */ IL_0061: ldc.i4.2
/* 0x000002BE 2802000006   */ IL_0062: call      void ConsoleApp2.Program::M(int16)

-128 ~ 127 사이의 숫자를 전달하는 경우는 M(int16) 메서드를 선택해 IL 코드를 산출해 내고 있는 반면,

M(49);

/* 0x000002C4 1F31         */ IL_0068: ldc.i4.s  49
/* 0x000002C6 2802000006   */ IL_006A: call      void Program::M(int16)

조건 연산자를 사용하면,

/* 0x000002C6 02           */ IL_006A: ldarg.0
/* 0x000002C7 8E           */ IL_006B: ldlen
/* 0x000002C8 2C03         */ IL_006C: brfalse.s IL_0071

/* 0x000002CA 18           */ IL_006E: ldc.i4.2
/* 0x000002CB 2B01         */ IL_006F: br.s      IL_0072

/* 0x000002CD 17           */ IL_0071: ldc.i4.1

/* 0x000002CE 6A           */ IL_0072: conv.i8
/* 0x000002CF 2803000006   */ IL_0073: call      void ConsoleApp2.Program::M(int64)

마찬가지로 (ldc.i4.1, ldc.i4.2) 상수 명령어가 오지만 마지막에 conv.i8을 이용해 M(int64)를 부르기 위한 변환을 합니다. 뭐 이 정도!

(첨부 파일은 이 글의 예제 코드를 포함합니다.)




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

[연관 글]






[최초 등록일: ]
[최종 수정일: 3/9/2024]

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

비밀번호

댓글 작성자
 




... 16  17  18  19  20  21  22  [23]  24  25  26  27  28  29  30  ...
NoWriterDateCnt.TitleFile(s)
13051정성태5/8/20226429.NET Framework: 2004. C# XingAPI - ACF 검색 결과로 구한 CSV 파일을 통해 퀀트 종목 찾기파일 다운로드1
13050정성태5/6/20226471.NET Framework: 2003. C# - COM 개체의 이벤트 핸들러에서 발생하는 예외에 대한 CLR의 특별 대우파일 다운로드1
13049정성태5/6/20225442오류 유형: 811. GoLand - Error: Cannot find package
13048정성태5/6/20226565오류 유형: 810. "ASUS TUF GAMING B550M-PLUS (WI-FI)" 모델에서 블루투스 장치가 인식이 안 되는 문제
13047정성태5/6/20226544오류 유형: 809. Speech Recognition could not start
13046정성태5/5/20226833.NET Framework: 2002. C# XingAPI - ACF 파일을 이용한 퀀트 종목 찾기(t1857)
13045정성태5/5/20226889.NET Framework: 2001. C# XingAPI - 주식 종목에 따른 PBR, PER, ROE 구하는 방법(t3341 예제)
13044정성태5/4/20226337오류 유형: 808. error : clang++ exited with code 127
13043정성태5/3/20225992오류 유형: 807. C# - 닷넷 응용 프로그램에서 Informix DB 사용 시 오류 메시지 정리
13042정성태5/3/20226368.NET Framework: 2000. C# - 닷넷 응용 프로그램에서 Informix DB 사용 방법파일 다운로드1
13041정성태4/28/20226633개발 환경 구성: 642. Informix 데이터베이스 docker 환경 구성
13040정성태4/27/20227150VC++: 156. 비주얼 스튜디오 - Linux C/C++ 프로젝트에서 openssl 링크하는 방법
13039정성태4/27/20227932.NET Framework: 1999. C# - Playwright를 이용한 간단한 브라우저 제어 실습
13038정성태4/26/20225831오류 유형: 806. twine 실행 시 ConfigParser.ParsingError: File contains parsing errors: /root/.pypirc
13037정성태4/25/20226171.NET Framework: 1998. Azure Functions를 사용한 간단한 실습
13036정성태4/24/20226887.NET Framework: 1997. C# - nano 시간을 가져오는 방법 [2]
13035정성태4/22/20227471Windows: 204. Windows 10부터 바뀐 QueryPerformanceFrequency, QueryPerformanceCounter
13034정성태4/21/20226863.NET Framework: 1996. C# XingAPI - 주식 종목에 따른 PBR, PER, ROE, ROA 구하는 방법(t3320, t8430 예제)파일 다운로드1
13033정성태4/18/20227488.NET Framework: 1195. C# - Thread.Yield와 Thread.Sleep(0)의 차이점(?)
13032정성태4/17/20227190오류 유형: 805. Github의 50MB 파일 크기 제한 - warning: GH001: Large files detected. You may want to try Git Large File Storage
13031정성태4/15/20226735.NET Framework: 1194. C# - IdealProcessor와 ProcessorAffinity의 차이점
13030정성태4/15/20226420오류 유형: 804. 정규 표현식 오류 - Quantifier {x,y} following nothing.
13029정성태4/14/20226822Windows: 203. iisreset 후에도 이전에 설정한 전역 환경 변수가 w3wp.exe에 적용되는 문제
13028정성태4/13/20226726.NET Framework: 1193. (appsettings.json처럼) web.config의 Debug/Release에 따른 설정 적용
13027정성태4/12/20227028.NET Framework: 1192. C# - 환경 변수의 변화를 알리는 WM_SETTINGCHANGE Win32 메시지 사용법파일 다운로드1
13026정성태4/11/20228529.NET Framework: 1191. C 언어로 작성된 FFmpeg Examples의 C# 포팅 전체 소스 코드 [3]
... 16  17  18  19  20  21  22  [23]  24  25  26  27  28  29  30  ...