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

... [31]  32  33  34  35  36  37  38  39  40  41  42  43  44  45  ...
NoWriterDateCnt.TitleFile(s)
12845정성태10/6/20218095.NET Framework: 1120. C# - BufferBlock<T> 사용 예제 [5]파일 다운로드1
12844정성태10/3/20216128오류 유형: 764. MSI 설치 시 "... is accessible and not read-only." 오류 메시지
12843정성태10/3/20216587스크립트: 29. 파이썬 - fork 시 기존 클라이언트 소켓 및 스레드의 동작파일 다운로드1
12842정성태10/1/202124792오류 유형: 763. 파이썬 오류 - AttributeError: type object '...' has no attribute '...'
12841정성태10/1/20218375스크립트: 28. 모든 파이썬 프로세스에 올라오는 특별한 파일 - sitecustomize.py
12840정성태9/30/20218424.NET Framework: 1119. Entity Framework의 Join 사용 시 다중 칼럼에 대한 OR 조건 쿼리파일 다운로드1
12839정성태9/15/20219492.NET Framework: 1118. C# 11 - 제네릭 타입의 특성 적용파일 다운로드1
12838정성태9/13/20219144.NET Framework: 1117. C# - Task에 전달한 Action, Func 유형에 따라 달라지는 async/await 비동기 처리 [2]파일 다운로드1
12837정성태9/11/20218086VC++: 151. Golang - fmt.Errorf, errors.Is, errors.As 설명
12836정성태9/10/20217667Linux: 45. 리눅스 - 실행 중인 다른 프로그램의 출력을 확인하는 방법
12835정성태9/7/20218946.NET Framework: 1116. C# 10 - (15) CallerArgumentExpression 특성 추가 [2]파일 다운로드1
12834정성태9/7/20217318오류 유형: 762. Visual Studio 2019 Build Tools - 'C:\Program' is not recognized as an internal or external command, operable program or batch file.
12833정성태9/6/20216770VC++: 150. Golang - TCP client/server echo 예제 코드파일 다운로드1
12832정성태9/6/20217607VC++: 149. Golang - 인터페이스 포인터가 의미 있을까요?
12831정성태9/6/20216149VC++: 148. Golang - 채널에 따른 다중 작업 처리파일 다운로드1
12830정성태9/6/20218364오류 유형: 761. Internet Explorer에서 파일 다운로드 시 "Your current security settings do not allow this file to be downloaded." 오류
12829정성태9/5/202110016.NET Framework: 1115. C# 10 - (14) 구조체 타입에 기본 생성자 정의 가능파일 다운로드1
12828정성태9/4/20218144.NET Framework: 1114. C# 10 - (13) 단일 파일 내에 적용되는 namespace 선언파일 다운로드1
12827정성태9/4/20218125스크립트: 27. 파이썬 - 웹 페이지 데이터 수집을 위한 scrapy Crawler 사용법 요약
12826정성태9/3/202110370.NET Framework: 1113. C# 10 - (12) 문자열 보간 성능 개선 [1]파일 다운로드1
12825정성태9/3/20217925개발 환경 구성: 603. GoLand - WSL 환경과 연동
12824정성태9/2/202117000오류 유형: 760. 파이썬 tensorflow - Dst tensor is not initialized. 오류 메시지
12823정성태9/2/20216737스크립트: 26. 파이썬 - PyCharm을 이용한 fork 디버그 방법
12822정성태9/1/202111945오류 유형: 759. 파이썬 tensorflow - ValueError: Shapes (...) and (...) are incompatible [2]
12821정성태9/1/20217494.NET Framework: 1112. C# - .NET 6부터 공개된 ISpanFormattable 사용법
12820정성태9/1/20217798VC++: 147. Golang - try/catch에 대응하는 panic/recover [1]파일 다운로드1
... [31]  32  33  34  35  36  37  38  39  40  41  42  43  44  45  ...