NSNotification 上的对象是否需要强制转换?

发布于 2024-12-09 11:24:43 字数 355 浏览 0 评论 0原文

当我收到 NSNotification 时,我是否需要强制转换 notification.object?假设我知道 notification.object 将是 MyClass 的实例,并且我执行以下操作:

MyClass *myClass = notification.object;

这里需要进行任何转换吗? 上述分配如何不同于:

MyClass *myClass = (MyClass *)notification.object;

When I receive an NSNotification do I ever need to cast notification.object? Suppose I know notification.object will be an instance of MyClass and I do the following:

MyClass *myClass = notification.object;

Is any casting necessary here? How is the above assignment different from:

MyClass *myClass = (MyClass *)notification.object;

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

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

发布评论

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

评论(2

对你再特殊 2024-12-16 11:24:43

不,这是完全没有必要的,并且不会改变程序的任何行为。强制转换仅在编译时发生,对于指针而言,仅用于向编译器保证您知道对象是什么类型。

例如,如果您将 Subclass 类型的变量设置为返回 Superclass 类型的方法的结果,编译器可能会抱怨赋值,其中您知道您要返回的实际对象是 Subclass 类型。在这种情况下,您将转换为子类。例如,

MyViewController * vc = (MyViewController *)[someWindow rootViewController];

notification.object 的类型是 id,一个通用对象指针,编译器非常乐意将这样的指针分配给任何其他类型的指针。

No, it is entirely unneccessary and does not change anything about the behavior of your program. Casting only happens at compile time, and in the case of pointers, is just used to assure the compiler that you know what type the object is.

The compiler may complain about an assignment if you are, for example, setting a variable of type Subclass to the result of a method that returns type Superclass, where you know that the actual object you are going to get back is of type Subclass. In that case, you would cast to the subclass. E.g.,

MyViewController * vc = (MyViewController *)[someWindow rootViewController];

The type of notification.object is id, a generic object pointer, and the compiler is perfectly happy to assign such a pointer to any other type of pointer.

葵雨 2024-12-16 11:24:43

不需要。Objective-C 不需要从 id 类型到另一个对象类型的转换。

No. Objective-C doesn't require a cast from type id to another object type.

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