欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

将False定义为1

程序员文章站 2022-05-01 22:54:51
...
#include <iostream>

using namespace std;

#define FALSE 1
void fun()
{
    if (false)
    {
        cout << "hello1" << endl;
    }
    if (FALSE)
    {
        cout << "hello2" << endl;
    }
}
int main()
{
    fun();
    return 0;
}
将False定义为1