如何通过指针和整数相加创建 NSValue?

发布于 2024-07-25 04:35:11 字数 185 浏览 4 评论 0原文

我需要为 NSMutableDictionary 创建一个键。 理想的键是指针和整数的合并。

这仅适用于指针 NSValue *key = [NSValue valueWithPointer:somePointer];

如何将 somePointer + someInt 加在一起,然后从结果中形成一个键?

I need to create a key for an NSMutableDictionary. The ideal key would be the merger of a pointer and an integer.

This will work for just the pointer
NSValue *key = [NSValue valueWithPointer:somePointer];

How do I add together somePointer + someInt and then form a key from the result?

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

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

发布评论

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

评论(1

友谊不毕业 2024-08-01 04:35:11

我会这样做:

NSObject *p = <object>
int  n = 0xdeadbeef;
NSValue *v = [NSValue valueWithPointer:(void *)((uint32_t )p + n)];

NSLog(@"p = %p n = %x v = %@",p,n,v);

指针是整数类型,其大小取决于您的平台(通常为 32 或 64 位),可以使用合适的强制转换将其添加到其他整数类型。 只需确保使用长度大于或等于 void 指针长度的类型进行强制转换。 这将确保您不会截断指针。

I would do this:

NSObject *p = <object>
int  n = 0xdeadbeef;
NSValue *v = [NSValue valueWithPointer:(void *)((uint32_t )p + n)];

NSLog(@"p = %p n = %x v = %@",p,n,v);

Pointers are integer types whose size depends on your platform (32 or 64 bits typically) which can be added to other integral types using a suitable cast. Just make sure to cast with a type whose length is greater than or equal to the length of a void pointer. This will ensure that you don't truncate the pointer.

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