C語言巨集定義中#define中的井號#的使用

Koma_Wong發表於2018-09-15
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

typedef enum
{
	E_1,
	E_2,
	E_3,
}ENUM;

//保持原有狀態
#define x1(state) \
		f1(state, #state)
//銜接
#define y1(state) \
		f1(state##_1, #state)

int f1(ENUM state, char* s_state)
{
	printf("%d:%s\n", state, s_state);
	return 0;
}

int main(int argc, char *argv[])
{
	x1(E_2);
	y1(E);
	
	return -1;
}

結果:

$ gcc fns.c
$ ./a.exe
1:E_2
0:E

 

相關文章