[DEV] 기록

C++ >?= 문법

꾸준함. 2020. 6. 18. 10:30

>?= 문법

c++ BigInt 라이브러리 소스코드를 보면 >?= 문법이 사용되는 것을 확인할 수 있습니다.

StackOverflow 답변에 따르면 >?= 문법은 GCC 4.2 이전 버전에서 사용되던 문법이며 algorithm 헤더의 max 와 동일한 기능을 합니다.

예를 들자면, a >?= ba = max(a, b)와 같은 결과를 반환합니다.

마찬가지로, a <?= ba = min(a, b)와 같은 결과를 반환합니다.

 

[출처]

https://stackoverflow.com/questions/5199630/what-does-the-operator-mean

 

What does the >?= operator mean?

Looking through this C++ BigInt library and found the BigInt.cpp file. At the top there is a a comment at the top about compatibility: This class was written for the g++ compiler and uses some o...

stackoverflow.com

 

반응형