[豆知识] 如何测试 C++ 的私有成员
night_stalker
2009-11-15
#define private public #define protected public #define class struct |
|
fineqtbull
2009-11-15
真有创意,居然关键字也可以作为宏。
|
|
pf_miles
2009-12-16
囧知识...
|
|
pf_miles
2009-12-16
或许java可以用instrumentation实现,宏也就相当于个premain
|
|
night_stalker
2009-12-30
性能优化 ……:
#define while if 诡异运算符 x --> 0 // 其实是 x-- > 0 #define _ 0 printf("%d\n", 1 >_< 1); true :1 false:0 |
|
RednaxelaFX
2009-12-30
#include <stdio.h> int main() { wprintf(L"%d\n", L"_"< 0); } 这个 L"_"< 看起来也很口耐 |