您好,登錄后才能下訂單哦!
宏定義在C/C++中使用的非常多,一方面定義一些常量,另一方面定義一些通用函數(shù),但是有些宏定義實(shí)現(xiàn)較為復(fù)雜,尤其是很多帶#或##的宏定義,令很多人讀起來很不解,下面就簡(jiǎn)單介紹一下宏定義中的#和##。
#include <stdio.h>
#define CAT(x,y) x##y
int main()
{
char helloworld[] = "hi, hello world!";
printf("%s", CAT(hello, world));
return 0;
}
#include <stdio.h>
#include<string.h>
#define STRCPY(a, b) strcpy(a ##_p, #b)
int main()
{
char arrr_p[]="abcdefg";
char *bb = "123456";
STRCPY(arrr, bb);
printf("%s\n",arrr_p);
return 0;
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。