预定义函数最小化

时间:2011-06-07 11:22:05

标签: objective-c

  

可能重复:
  Is there a convenient function in objective-c / coca-touch to find a lowest number?

#import <Foundation/Foundation.h>

int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

    int a=10,b=5,c;
    c=min(a,b);
    NSLog(@"min:%d",c);

    [pool drain];
    return 0;
}

我必须计算两个数字的最小值。 我们可以使用if(a&gt; b)来找出最小值。但是有没有任何预定义函数来计算两个数字的最小值。

1 个答案:

答案 0 :(得分:18)

已经讨论过这个here。 Objective-C包含一个MIN(a,b)宏,它应该适合您的需要。