摘要: 参考:https://www.runoob.com/w3cnote/macro-definition.html // 正确的认识宏 (三目运算的宏定义) // (1)小白写法#define MIN(A,B) A < B ? A : B int a = MIN(1,2);// => int a = 1 阅读全文