C define用法例子

#include <iostream>

using namespace std;

/*
规则1: 
用宏定义表达式时,要使用完备的括号。
#define RECTANGLE_AREA(a, b) ((a) * (b))

规则2:
规则5.2 将宏所定义的多条表达式放在大括号中。
说明:更好的方法是多条语句写成do while(0)的方式。


*/

#define test 1+2+3
//define只是一个简单的替换, 最好加个括号。 
#define test_brackets (1 + 2 + 3)
//换行,添加\之后应该立即回车, 否则会报错。作用类似于未完代续。
#define test_newline (1 \
                        + 2 + 3\
                    )

void printFoo(int x)
{
    cout << "2--> " << x << endl;
}

//如果有变量的话, 需要(x)
#define foo(x) \
    cout << "1--> " << x << endl;\
    printFoo(x);

//这种方式是最符合规范的。
#define foo_do_while(x)\
    do\
    {\
        cout << "1--> " << x << endl;\
        printFoo(x);\
    }while(0)

//######################################
//define #的使用与##的使用
#define no_symbol(x) (x)
#define one_symbol(x) (#x)
//连接两个对象但并不是转换连接两个字符串。
#define two_symbol(x, y) x##y 

//宏参数: err_msg
//前两个是连接, 后一个是转换成字符串。
#define log(err_msg) {cout << "err_msg is "###err_msg << endl;}
#define log(err_msg) {cout << "err_msg is "#err_msg << endl;}

int main()
{
    cout << test << endl;
    cout << test*test << endl;
    cout << test_brackets * test_brackets << endl;
    cout << test_newline << endl;

    foo(20);
    foo(30);

    cout << no_symbol("haha") << endl;
    cout << one_symbol(haha) << endl;
    cout << two_symbol("haha", "ahah")<< endl;
    
    //这样做会自动拼接字符串。
    cout << "HELLO""THE""WORLD"<< endl;

    log(pointer is null)
    system("pause");
}

详细定义: https://blog.csdn.net/shuzfan/article/details/52860664

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值