rt,如果我写出以下代码:
#define abs(x) ((x)>0?(x):(-(x))) cout<<abs(-114514)<<endl;
那么 abs 调用的是宏定义还是 cmath 库里的 abs 函数?
abs
cmath