iOS开发-用宏定义求2个数中的最大值

#define max(a,b) (((a)>(b))?(a):(b))

原文地址:https://www.cnblogs.com/fisland/p/4301988.html