在 Core Data 中存储负整数

发布于 2024-10-08 05:46:13 字数 338 浏览 5 评论 0原文

我可以正确地为托管对象模型实例的属性分配和检索正整数。但是,为此属性分配一个负整数会将数字“4294967295”记录到我的核心数据持久存储(一个 xml 文件)中。因此,当应用程序重新加载并重新实例化托管对象时,该属性将读取“4294967295”。

该属性在我的 DataModel 中指定为 Integer 32 类型,并且“最小值”为“-12”。我猜这与将负整数存储为字符串有关。此代码产生相同的“4294967295”:

NSLog(@"Log -1: %u", -1);
=> "Log -1: 4294967295"

在核心数据中存储负整数的正确方法是什么?

I can properly assign and retrieve a positive integer to an attribute of a managed object model instance. However, assigning a negative integer to this attribute records the number "4294967295" to my core data persistant store (an xml file). Thus, when the application reloads and the managed object is re-instantiated, the attribute reads "4294967295".

This attribute is specified in my DataModel as type Integer 32 and has a "Min Value" of "-12". I'm guessing this has something to do with storing negative integers as strings. This code produces the same "4294967295":

NSLog(@"Log -1: %u", -1);
=> "Log -1: 4294967295"

What's the proper way to store a negative integer in Core Data?

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

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

发布评论

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

评论(1

池予 2024-10-15 05:46:13

这不是核心数据的问题,而是格式说明符的问题。 %u 表示您希望参数格式化为无符号整数,不能为负数。请使用 %d%i (这些表示有符号整数)。

It's not a problem with Core Data, it's a problem with your format specifier. %u means that you want the argument formatted as an unsigned integer, which cannot be negative. Use %d or %i instead (these mean signed integers).

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