Microsoft MVP성태의 닷넷 이야기
VC++: 140. C++의 연산자 동의어(operator synonyms), 대체 토큰 [링크 복사], [링크+제목 복사]
조회: 9916
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 
(연관된 글이 2개 있습니다.)

C++의 연산자 동의어(operator synonyms), 대체 토큰

이상하군요, 분명히 전에 컴파일이 잘 되었는데,

#import "mscorlib.tlb" raw_interfaces_only              \
    high_property_prefixes("_get","_put","_putref")     \
    rename("ReportEvent", "InteropServices_ReportEvent") 

이번엔 위의 import 구문으로 생성한 헤더 파일의 "or" 식별자에서,

struct __declspec(uuid("03ec7d10-17a5-3585-9a2e-0596fcac3870"))
ITrackingHandler : IDispatch
{
    //
    // Raw methods provided by interface
    //

      virtual HRESULT __stdcall MarshaledObject (
        /*[in]*/ VARIANT obj,
        /*[in]*/ struct _ObjRef * or ) = 0;
      virtual HRESULT __stdcall UnmarshaledObject (
        /*[in]*/ VARIANT obj,
        /*[in]*/ struct _ObjRef * or ) = 0;
      virtual HRESULT __stdcall DisconnectedObject (
        /*[in]*/ VARIANT obj ) = 0;
};

이렇게 (경고와 함께) 오류가 발생합니다.

3>E:\DotNetSamples\Cpp\netfx_host\netfx_host\netfx_host.cpp(13,1): warning C4279: 'or': identifier in type library 'mscorlib.tlb' is a keyword; use the 'rename' qualifier
3>E:\DotNetSamples\Cpp\netfx_host\netfx_host\x64\Debug\mscorlib.tlh(12974,35): error C2143: syntax error: missing ')' before '||'
3>E:\DotNetSamples\Cpp\netfx_host\netfx_host\x64\Debug\mscorlib.tlh(12974,35): error C2143: syntax error: missing ';' before '||'
3>E:\DotNetSamples\Cpp\netfx_host\netfx_host\x64\Debug\mscorlib.tlh(12974,35): error C2059: syntax error: '||'
3>E:\DotNetSamples\Cpp\netfx_host\netfx_host\x64\Debug\mscorlib.tlh(12974,38): error C2059: syntax error: ')'
3>E:\DotNetSamples\Cpp\netfx_host\netfx_host\x64\Debug\mscorlib.tlh(12974,43): error C2238: unexpected token(s) preceding ';'
3>E:\DotNetSamples\Cpp\netfx_host\netfx_host\x64\Debug\mscorlib.tlh(12977,35): error C2143: syntax error: missing ')' before '||'
3>E:\DotNetSamples\Cpp\netfx_host\netfx_host\x64\Debug\mscorlib.tlh(12977,35): error C2143: syntax error: missing ';' before '||'
3>E:\DotNetSamples\Cpp\netfx_host\netfx_host\x64\Debug\mscorlib.tlh(12977,35): error C2059: syntax error: '||'
3>E:\DotNetSamples\Cpp\netfx_host\netfx_host\x64\Debug\mscorlib.tlh(12977,38): error C2059: syntax error: ')'
3>E:\DotNetSamples\Cpp\netfx_host\netfx_host\x64\Debug\mscorlib.tlh(12977,43): error C2238: unexpected token(s) preceding ';'

C++에 or 연산자가 있는지 처음 알았군요. ^^; 그래서 검색해 보니,

Keywords (C++)
; https://learn.microsoft.com/en-us/cpp/cpp/keywords-cpp

"Standard C++ keywords" 영역에 "The extended operator synonyms are keywords when /permissive- or /Za (Disable language extensions) is specified. They aren't keywords when Microsoft extensions are enabled."라는 주석으로 "or"이 등록되어 있습니다.

좀 더 자세한 정보는 해당 예약어의 문서에 있습니다.

Logical OR operator: ||
; https://learn.microsoft.com/en-us/cpp/cpp/logical-or-operator-pipe-pipe

C++ specifies or as an alternative spelling for ||. In C, the alternative spelling is provided as a macro in the <iso646.h> header. In C++, the alternative spelling is a keyword; use of <iso646.h> or the C++ equivalent <ciso646> is deprecated. In Microsoft C++, the /permissive- or /Za compiler option is required to enable the alternative spelling.


"alternative spelling"이라고도 표현하는데 아마도 적절한 한글 번역으로는 "대체 토큰"으로 하는 듯합니다.

C 대체 토큰
; https://ko.wikipedia.org/wiki/C_%EB%8C%80%EC%B2%B4_%ED%86%A0%ED%81%B0




정리해 보면, 일단 표준 입장에서는 C의 경우 iso646.h 헤더를 이용해 매크로로 정의되어 있지만 C++의 경우에는 분명하게 대체 토큰은 예약어라는 것입니다.

그럼 Visual C++의 경우에는 어떨까요? 일단 "Microsoft extensions"을 따르는 (기본) 모드에서는 예약어로 취급받지 않습니다. 그래서 그런 경우에는 iso646.h (또는, ciso646) 파일을 include시켜,

// iso646.h standard header

// Copyright (c) Microsoft Corporation.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

#pragma once
#ifndef _ISO646
#define _ISO646
#include <yvals_core.h>
#if _STL_COMPILER_PREPROCESSOR

#if !defined(__cplusplus) || defined(_MSC_EXTENSIONS)
#define and &&
#define and_eq &=
#define bitand &
#define bitor |
#define compl ~
#define not !
#define not_eq !=
#define or ||
#define or_eq |=
#define xor ^
#define xor_eq ^=
#endif // !defined(__cplusplus) || defined(_MSC_EXTENSIONS)
#endif // _STL_COMPILER_PREPROCESSOR
#endif // _ISO646

매크로 정의로 취급할 수 있습니다. 하지만 현재 C++ 언어상 예약어로 취급하기 때문에 Visual C++에서도 위와 같이 헤더 파일로 처리하는 것은 deprecated라고 하며, 대신 "Microsoft extensions" 모드에서도 예약어로 취급할 수 있도록 "Configuration Properties / C/C++ / Language" 범주의 "Conformance mode"로,

/permissive- (Standards conformance)
; https://learn.microsoft.com/en-us/cpp/build/reference/permissive-standards-conformance

포함시켰으므로, 이 값을 "Yes (/permissive-)"로 설정하면 예약어로 받아들이게 됩니다.

혹은, 아예 "Microsoft extensions" 모드를 끄면 되는데 그 옵션이 바로 "Disable Language Extensions"로 "Yes (/Za)" 값을 설정하는 것입니다.




그런데, 더욱 재미있는 글이 있군요. ^^

C++ - 대체 토큰 사용하기
; https://jacking75.github.io/cpp_alternative_tokens/

그러니까, and, and_eq, bitand, bitor, compl, not, not_eq, or, or_eq, xor, xor_eq 외에도 6개가 더 있는 것입니다.

<% == {
%> == }
<: == [
:> == ]
%: == #
%:%: == ##

설마... 하는 마음으로 Visual C++로 코딩을 했더니... 정말 컴파일이 됩니다. ^^; (대신 에디터의 자동 들여 쓰기가 인식을 못해 살짝 불편합니다.)

#include <iostream>
#include <functional>

using namespace std;

%:define USE_DEBUG

int main()
{
    <%
        bool b1 = true;
        bool b2 = true;

        bool result1 = b1 and b2;
        bool result2 = b1 or b2;

        printf("%d, %d\n", result1, result2);

        function<int(int, int)> f = <::>(int a, int b) { return a + b; };
    %>

    <%
        bool b1 = true;
        bool b2 = true;

        bool result1 = b1 and b2;
        bool result2 = b1 or b2;

        printf("%d, %d\n", result1, result2);
    %>
}

저런 의미에서 봤을 때, "연산자 동의어"는 대체 토큰의 일부라고 볼 수 있을 것입니다.




그런데... 왜 이런 걸 굳이 만들었을까... 궁금했는데 위키 문서에 다음과 같은 글이 있군요. ^^

대체 토큰을 통하여 프로그래머에게 하여금 일부 국제 표준과 비쿼티 키보드에선 입력하기 어려울 수 있는 C언어의 비트 및 논리 연산자를 쓸 수 있도록 해준다. 많은 지역적 차이로 구성된 7비트 문자가 담긴 ISO/IEC 646 표준을 참조하는 이 헤더 파일의 이름 중 일부는 C 연산자에 의해 쓰이는 문장 부호를 대체하는 악센트 문자가 있다.





대체 토큰에 정신이 팔려, 원래 오류가 난 코드의 해결책을 이제서야 쓰는군요. ^^ 당연히 /permissive- 옵션을 해제하거나 하는 등의 방법을 써도 되지만, import 구문에서 제공하는 rename을 다시 한번 적용하면 됩니다. 이렇게!

#import "mscorlib.tlb" raw_interfaces_only              \
    high_property_prefixes("_get","_put","_putref")     \
    rename("ReportEvent", "InteropServices_ReportEvent") \
    rename("or", "_or_")




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

[연관 글]






[최초 등록일: ]
[최종 수정일: 12/14/2022]

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

비밀번호

댓글 작성자
 



2023-01-10 11시30분
On leading underscores and names reserved by the C and C++ languages
; https://devblogs.microsoft.com/oldnewthing/20230109-00/?p=107685
정성태

... 16  17  [18]  19  20  21  22  23  24  25  26  27  28  29  30  ...
NoWriterDateCnt.TitleFile(s)
13169정성태11/23/20225593Windows: 212. 윈도우의 Protected Process (Light) 보안 [1]파일 다운로드2
13168정성태11/22/20224874제니퍼 .NET: 31. 제니퍼 닷넷 적용 사례 (9) - DB 서비스에 부하가 걸렸다?!
13167정성태11/21/20224904.NET Framework: 2070. .NET 7 - Console.ReadKey와 리눅스의 터미널 타입
13166정성태11/20/20224633개발 환경 구성: 651. Windows 사용자 경험으로 WSL 환경에 dotnet 런타임/SDK 설치 방법
13165정성태11/18/20224540개발 환경 구성: 650. Azure - "scm" 프로세스와 엮인 서비스 모음
13164정성태11/18/20225458개발 환경 구성: 649. Azure - 비주얼 스튜디오를 이용한 AppService 원격 디버그 방법
13163정성태11/17/20225380개발 환경 구성: 648. 비주얼 스튜디오에서 안드로이드 기기 인식하는 방법
13162정성태11/15/20226457.NET Framework: 2069. .NET 7 - AOT(ahead-of-time) 컴파일
13161정성태11/14/20225699.NET Framework: 2068. C# - PublishSingleFile로 배포한 이미지의 역어셈블 가능 여부 (난독화 필요성) [4]
13160정성태11/11/20225627.NET Framework: 2067. C# - PublishSingleFile 적용 시 native/managed 모듈 통합 옵션
13159정성태11/10/20228798.NET Framework: 2066. C# - PublishSingleFile과 관련된 옵션 [3]
13158정성태11/9/20225111오류 유형: 826. Workload definition 'wasm-tools' in manifest 'microsoft.net.workload.mono.toolchain' [...] conflicts with manifest 'microsoft.net.workload.mono.toolchain.net7'
13157정성태11/8/20225758.NET Framework: 2065. C# - Mutex의 비동기 버전파일 다운로드1
13156정성태11/7/20226668.NET Framework: 2064. C# - Mutex와 Semaphore/SemaphoreSlim 차이점파일 다운로드1
13155정성태11/4/20226186디버깅 기술: 183. TCP 동시 접속 (연결이 아닌) 시도를 1개로 제한한 서버
13154정성태11/3/20225651.NET Framework: 2063. .NET 5+부터 지원되는 GC.GetGCMemoryInfo파일 다운로드1
13153정성태11/2/20226926.NET Framework: 2062. C# - 코드로 재현하는 소켓 상태(SYN_SENT, SYN_RECV)
13152정성태11/1/20225556.NET Framework: 2061. ASP.NET Core - DI로 추가한 클래스의 초기화 방법 [1]
13151정성태10/31/20225674C/C++: 161. Windows 11 환경에서 raw socket 테스트하는 방법파일 다운로드1
13150정성태10/30/20225711C/C++: 160. Visual Studio 2022로 빌드한 C++ 프로그램을 위한 다른 PC에서 실행하는 방법
13149정성태10/27/20225638오류 유형: 825. C# - CLR ETW 이벤트 수신이 GCHeapStats_V1/V2에 대해 안 되는 문제파일 다운로드1
13148정성태10/26/20225628오류 유형: 824. msbuild 에러 - error NETSDK1005: Assets file '...\project.assets.json' doesn't have a target for 'net5.0'. Ensure that restore has run and that you have included 'net5.0' in the TargetFramew
13147정성태10/25/20224756오류 유형: 823. Visual Studio 2022 - Unable to attach to CoreCLR. The debugger's protocol is incompatible with the debuggee.
13146정성태10/24/20225585.NET Framework: 2060. C# - Java의 Xmx와 유사한 힙 메모리 최댓값 제어 옵션 HeapHardLimit
13145정성태10/21/20225845오류 유형: 822. db2 - Password validation for user db2inst1 failed with rc = -2146500508
13144정성태10/20/20225695.NET Framework: 2059. ClrMD를 이용해 윈도우 환경의 메모리 덤프로부터 닷넷 모듈을 추출하는 방법파일 다운로드1
... 16  17  [18]  19  20  21  22  23  24  25  26  27  28  29  30  ...