哪种 Objective-C 类型适合处理金钱?

发布于 2024-11-15 16:09:39 字数 47 浏览 1 评论 0原文

哪种 Objective-C 类型适合处理金钱?我需要一些与核心数据兼容的东西。

Which objective-c type is appropriate for handling money? I need something which is Core Data compatible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妥活 2024-11-22 16:09:39

有两种解决方案:

解决方案 #1 要求您在输入或输出货币值时在美分和美元之间进行转换,而解决方案 #2 的代码可能会比较混乱(例如,您必须编写类似 [num1decimalNumberByAdding:num2] 而不是 num1 + num2 来添加两个数字)。

我推荐解决方案#1,但请选择您认为最有效的解决方案。

There are two solutions:

  • Use an int, and always keep track of monetary values in cents (or the smallest possible division of whatever currency you're using). Use only integer calculations.
  • Use NSDecimalNumber, which does exact decimal arithmetic.

Solution #1 requires you to convert between cents and dollars whenever you do input or output of monetary values, whereas solution #2 can be messier to code (e.g. you have to write something like [num1 decimalNumberByAdding:num2] instead of num1 + num2 to add two numbers).

I'd recommend solution #1, but go with whichever of those you think would work best.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文