not_eq

运算符的 != 替代拼写。

语法

#define not_eq !=

备注

C++:

  • not_eq 可用作替代方法 !=。 需要 /permissive-/Za 编译器选项。
  • 包括 <iso646.h><ciso646> 已弃用。 可以使用替代拼写,而不包括任何头文件。
  • 没有其他拼写。==

C:

  • not_eq是另一种拼写。!= 它作为巨集提供,必须#include在其中<iso646.h>
  • 没有其他拼写。==

示例

// compile with: /EHsc
#include <iostream>
#include <iso646.h>

int main( )
{
   int x = 1, y = 2;
    
    // not_eq is available in C++ and C
    // This example is for C++, so no header file is needed to use not_eq
    // When compiling for C, #include <iso646.h> to use not_eq
    if (x not_eq y)
    {
        std::cout << "Not equal\n";
    }
}
Not equal

要求

标头:<iso646.h>如果要编译 C,则需要标头。