gpt4 book ai didi

iphone - objective-c 中的 Math.min

转载 作者:太空狗 更新时间:2023-10-30 03:27:18 27 4
gpt4 key购买 nike

任何人都可以告诉我如何将此 java 代码更改为 objective-c 。是否有任何功能数学.min.我是 objective-c 的新手

result = Math.min(Math.min((hra * 12), rent), 
(0.4 * pay));

最佳答案

您可以使用 NSObjCRuntime.h 中的 MIN:

#ifndef MIN
#import <NSObjCRuntime.h>
#endif

result = MIN(MIN((hra * 12), rent), (0.4 * pay));

关于iphone - objective-c 中的 Math.min,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8588414/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com