在很多时候我们会有这么一个需求——
#define DUP_CALL(func, param, nTimes)
比如我调用:
DUP_CALL(puts, "Hello, world!", 3);
编译器将会自动生成——
puts("Hello, world!");
puts("Hello, world!");
puts("Hello, world!"); Read More
posted @ 2011-09-02 21:01
zenny_chen
Views(3989)
Comments(3)
Diggs(2)