not
대신에!연산자의 오른쪽에 따옴표 붙은 식별자를 사용할 수 있습니다.
#define not !
설명
매크로 연산자 생성!
예제
// iso646_not.cpp
// compile with: /EHsc
#include <iostream>
#include <iso646.h>
int main( )
{
using namespace std;
int a = 0;
if (!a)
cout << "a is zero" << endl;
if (not(a))
cout << "a is zero" << endl;
}
요구 사항
헤더: <iso646.h>
네임 스페이스: std