宏定义#define使用#、##、__stringify
#include "stdafx.h"
#include <string>
using namespace std;
#include <iostream>
void test()
{
{
/*
# (stringizing)字符串化操作符。
其作用是:将宏定义中的传入参数名转换成用一对双引号括起来参数名字符串。
其只能用于有传入参数的宏定义中,且必须置于宏定义体中的参数名前。
*/
#define example(instr) printf("the.
原创
2020-10-09 16:30:31 ·
748 阅读 ·
0 评论