다음을 통해 공유


CComCurrency::operator >

 

게시: 2016년 4월

이 연산자는 두 비교 CComCurrency 개체를 더 큰 결정 합니다.

구문

      bool operator >(
   const CComCurrency & cur 
) const;

매개 변수

  • cur
    CComCurrency 개체

반환 값

반환 true 두 번째 보다 큰 첫 번째 개체인 경우 거짓 그렇지.

예제

CComCurrency cur1(10, 5100);
CComCurrency cur2(10, 5000);
ATLASSERT(cur1 > cur2);

요구 사항

헤더: atlcur.h

참고 항목

CComCurrency Class
CComCurrency::operator >=
CComCurrency::operator <
CComCurrency::operator <=