当前位置:  开发笔记 > 前端 > 正文

如何在Objective-C/iOS中代表钱?

如何解决《如何在Objective-C/iOS中代表钱?》经验,为你挑选了2个好方法。

我正在开发一款iPhone应用程序并且希望代表金额($)金额.我不能使用float因为它们会引入一定量的舍入错误.我可以用什么?

我正在考虑定义我自己的Money类,并在内部存储美元和便士作为NSInteger.

@interface Money : NSObject {
    //$10.25 is stored as dollas=10 and pennies=25
    NSInteger dollars;
    NSInteger pennies;
}

另一种可能的表示(更容易添加和乘法)将使用单个NSInteger作为便士.

@interface Money : NSObject {
    //$10.25 is stored as pennies=1025
    NSInteger pennies;
}

你的想法是什么?我可以使用"BigDecimal"类型吗?



1> 小智..:

使用NSDecimalNumber.当然它有开销,但除非你能证明这是一个问题,否则你会喜欢它给你的准确性.

http://www.cimgf.com/2008/04/23/cocoa-tutorial-dont-be-lazy-with-nsdecimalnumber-like-me/ http://developer.apple.com/documentation/Cocoa/Reference/基金会/班/ NSDecimalNumber_Class /参考/的reference.html



2> Doug Currie..:

使用该NSDecimalNumber课程.

推荐阅读
Life一切安好
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有