Microsoft MVP성태의 닷넷 이야기
VC++: 140. C++의 연산자 동의어(operator synonyms), 대체 토큰 [링크 복사], [링크+제목 복사]
조회: 9922
글쓴 사람
정성태 (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
정성태

1  2  3  4  5  6  [7]  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13448정성태11/20/20232620닷넷: 2163. .NET 8 - Dynamic PGO를 결합한 성능 향상파일 다운로드1
13447정성태11/16/20232485닷넷: 2162. ASP.NET Core 웹 사이트의 SSL 설정을 코드로 하는 방법
13446정성태11/16/20232418닷넷: 2161. .NET Conf 2023 - Day 1 Blazor 개요 정리
13445정성태11/15/20232699Linux: 62. 리눅스/WSL에서 CA 인증서를 저장하는 방법
13444정성태11/15/20232453닷넷: 2160. C# 12 - Experimental 특성 지원
13443정성태11/14/20232491개발 환경 구성: 687. OpenSSL로 생성한 사용자 인증서를 ASP.NET Core 웹 사이트에 적용하는 방법
13442정성태11/13/20232321개발 환경 구성: 686. 비주얼 스튜디오로 실행한 ASP.NET Core 사이트를 WSL 2 인스턴스에서 https로 접속하는 방법
13441정성태11/12/20232650닷넷: 2159. C# - ASP.NET Core 프로젝트에서 서버 Socket을 직접 생성하는 방법파일 다운로드1
13440정성태11/11/20232351Windows: 253. 소켓 Listen 시 방화벽의 Public/Private 제어 기능이 비활성화된 경우
13439정성태11/10/20232842닷넷: 2158. C# - 소켓 포트를 미리 시스템에 등록/예약해 사용하는 방법(Port Exclusion Ranges)파일 다운로드1
13438정성태11/9/20232462닷넷: 2157. C# - WinRT 기능을 이용해 윈도우에서 실행 중인 Media App 제어
13437정성태11/8/20232656닷넷: 2156. .NET 7 이상의 콘솔 프로그램을 (dockerfile 없이) 로컬 docker에 배포하는 방법
13436정성태11/7/20232892닷넷: 2155. C# - .NET 8 런타임부터 (Reflection 없이) 특성을 이용해 public이 아닌 멤버 호출 가능
13435정성태11/6/20232827닷넷: 2154. C# - 네이티브 자원을 포함한 관리 개체(예: 스레드)의 GC 정리
13434정성태11/1/20232617스크립트: 62. 파이썬 - class의 정적 함수를 동적으로 교체
13433정성태11/1/20232341스크립트: 61. 파이썬 - 함수 오버로딩 미지원
13432정성태10/31/20232377오류 유형: 878. 탐색기의 WSL 디렉터리 접근 시 "Attempt to access invalid address." 오류 발생
13431정성태10/31/20232704스크립트: 60. 파이썬 - 비동기 FastAPI 앱을 gunicorn으로 호스팅
13430정성태10/30/20232596닷넷: 2153. C# - 사용자가 빌드한 ICU dll 파일을 사용하는 방법
13429정성태10/27/20232853닷넷: 2152. Win32 Interop - C/C++ DLL로부터 이중 포인터 버퍼를 C#으로 받는 예제파일 다운로드1
13428정성태10/25/20232912닷넷: 2151. C# 12 - ref readonly 매개변수
13427정성태10/18/20233082닷넷: 2150. C# 12 - 정적 문맥에서 인스턴스 멤버에 대한 nameof 접근 허용(Allow nameof to always access instance members from static context)
13426정성태10/13/20233265스크립트: 59. 파이썬 - 비동기 호출 함수(run_until_complete, run_in_executor, create_task, run_in_threadpool)
13425정성태10/11/20233084닷넷: 2149. C# - PLinq의 Partitioner<T>를 이용한 사용자 정의 분할파일 다운로드1
13423정성태10/6/20233062스크립트: 58. 파이썬 - async/await 기본 사용법
13422정성태10/5/20233202닷넷: 2148. C# - async 유무에 따른 awaitable 메서드의 병렬 및 예외 처리
1  2  3  4  5  6  [7]  8  9  10  11  12  13  14  15  ...