Would it be beneficial to begin using instancetype instead of id?(开始使用 instancetype 而不是 id 是否有益?)
问题描述
Clang 添加了一个关键字 instancetype
,尽我所能看,将 id
替换为 -alloc
和 init
中的返回类型.
Clang adds a keyword instancetype
that, as far as I can see, replaces id
as a return type in -alloc
and init
.
使用 instancetype
代替 id
有什么好处吗?
Is there a benefit to using instancetype
instead of id
?
推荐答案
肯定有好处.当你使用 'id' 时,你基本上没有得到任何类型检查.使用 instancetype,编译器和 IDE 可以知道返回的是什么类型的东西,并且可以更好地检查您的代码并更好地自动完成.
There definitely is a benefit. When you use 'id', you get essentially no type checking at all. With instancetype, the compiler and IDE know what type of thing is being returned, and can check your code better and autocomplete better.
只在当然有意义的地方使用它(即返回该类实例的方法);id 还是有用的.
Only use it where it makes sense of course (i.e. a method that is returning an instance of that class); id is still useful.
这篇关于开始使用 instancetype 而不是 id 是否有益?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:开始使用 instancetype 而不是 id 是否有益?
基础教程推荐
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01