Objective-C中的instancetype和id区别

有一个相同两个不同。相同

Written by Mattt Thompson on Dec 10th, 2012

Objective-C is a rapidly evolving language, in a way that you just don't see in established programming languages. ARC, object literals, subscripting, blocks: in the span of just three years, so much of how we program in Objective-C has been changed (for the better).

All of this innovation is a result of Apple's philosophy of vertical integration. Just as Apple's investment in designing its own chipsets gave them leverage to compete aggressively with their mobile hardware, so too has their investment in LLVM allowed their software to keep pace.

Clang developments range from the mundane to paradigm-changing, but telling the difference takes practice. Because we're talking about low-level language features, it's difficult to understand what implications they may have higher up with API design.

One such example is instancetype, the subject of this week's article.


In Objective-C, conventions aren't just a matter of coding best-practices, they are implicit instructions to the compiler.

For example, alloc and init both have return types of id, yet in Xcode, the compiler makes all of the correct type checks. How is this possible?

In Cocoa, there is a convention that methods with names like alloc, or init always return objects that are an instance of the receiver class. These methods are said to have a related result type.

Class constructor methods, although they similarly return id, don't get the same type-checking benefit, because they don't follow that naming convention.

You can try this out for yourself:

[[[NSArray alloc] init] mediaPlaybackAllowsAirPlay]; // ❗ "No visible @interface for `NSArray` declares the selector `mediaPlaybackAllowsAirPlay`"

[[NSArray array] mediaPlaybackAllowsAirPlay]; // (No error)

Because alloc and init follow the naming convention for being a related result type, the correct type check against NSArray is performed. However, the equivalent class constructor array does not follow that convention, and is interpreted as id.

id is useful for opting-out of type safety, but losing it when you do want it sucks.

The alternative, of explicitly declaring the return type ((NSArray *) in the previous example) is a slight improvement, but is annoying to write, and doesn't play nicely with subclasses.

This is where the compiler steps in to resolve this timeless edge case to the Objective-C type system:

instancetype is a contextual keyword that can be used as a result type to signal that a method returns a related result type. For example:

@interface Person
+ (instancetype)personWithName:(NSString *)name;
@end

  
  

instancetype, unlike id, can only be used as the result type in a method declaration.

With instancetype, the compiler will correctly infer that the result of +personWithName: is an instance of a Person.

Look for class constructors in Foundation to start using instancetype in the near future. New APIs, such as UICollectionViewLayoutAttributes are using instancetype already.

下面的翻译:原文地址:http://blog.csdn.net/wzzvictory/article/details/16994913

一、什么是instancetype

instancetype是clang 3.5开始,clang提供的一个关键字,表示某个方法返回的未知类型的Objective-C对象。我们都知道未知类型的的对象可以用id关键字表示,那为什么还会再有一个instancetype呢?

二、关联返回类型(related result types)

根据Cocoa的命名规则,满足下述规则的方法:

1、类方法中,以alloc或new开头

2、实例方法中,以autorelease,init,retain或self开头

会返回一个方法所在类类型的对象,这些方法就被称为是关联返回类型的方法。换句话说,这些方法的返回结果以方法所在的类为类型,说的有点绕口,请看下面的例子:

[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. @interface NSObject  
  2. + (id)alloc;  
  3. - (id)init;  
  4. @end  
  5.   
  6. @interface NSArray : NSObject  
  7. @end  
当我们使用如下方式初始化NSArray时:
[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. NSArray *array = [[NSArray alloc] init];  
按照Cocoa的命名规则,语句[NSArray alloc] 的类型就是NSArray*因为alloc的返回类型属于关联返回类型。同样,[[NSArray alloc]init] 的返回结果也是NSArray*

三、instancetype作用

1、作用

如果一个不是关联返回类型的方法,如下:

[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. @interface NSArray  
  2. + (id)constructAnArray;  
  3. @end  

当我们使用如下方式初始化NSArray时:

[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. [NSArray constructAnArray];  
根据Cocoa的方法命名规范,得到的返回类型就和方法声明的返回类型一样,是id

但是如果使用instancetype作为返回类型,如下:

[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. @interface NSArray  
  2. + (instancetype)constructAnArray;  
  3. @end  
当使用相同方式初始化NSArray时:
[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. [NSArray constructAnArray];  
得到的返回类型和方法所在类的类型相同,NSArray*!

总结一下,instancetype的作用,就是使那些非关联返回类型的方法返回所在类的类型

2、好处

能够确定对象的类型,能够帮助编译器更好的为我们定位代码书写问题,比如:

[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. [[[NSArray alloc] init] mediaPlaybackAllowsAirPlay]; //  "No visible @interface for `NSArray` declares the selector `mediaPlaybackAllowsAirPlay`"  
  2.   
  3. [[NSArray array] mediaPlaybackAllowsAirPlay]; // (No error)  
上例中第一行代码,由于[[NSArray alloc]init]的结果是NSArray*,这样编译器就能够根据返回的数据类型检测出NSArray是否实现mediaPlaybackAllowsAirPlay方法。有利于开发者在编译阶段发现错误。

第二行代码,由于array不属于关联返回类型方法,[NSArray array]返回的是id类型,编译器不知道id类型的对象是否实现了mediaPlaybackAllowsAirPlay方法,也就不能够替开发者及时发现错误。

四、instancetype和id的异同

1、相同点

都可以作为方法的返回类型

2、不同点

①instancetype可以返回和方法所在类相同类型的对象,id只能返回未知类型的对象;

②instancetype只能作为返回值,不能像id那样作为参数,比如下面的写法:

[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. //err,expected a type  
  2. - (void)setValue:(instancetype)value  
  3. {  
  4.     //do something  
  5. }  
就是错的,应该写成:
[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. - (void)setValue:(id)value  
  2. {  
  3.     //do something  
  4. }  



阅读终点,创作起航,您可以撰写心得或摘录文章要点写篇博文。去创作
  • 22
    点赞
  • 91
    收藏
    觉得还不错? 一键收藏
  • 21
    评论
Objective-C语言可以使用NSArray或NSMutableArray来实现队列,但是它们是动态数组,插入和删除操作效率较低。如果需要实现一个高效的队列,可以使用循环队列。 循环队列是一种特殊的队列,它的队尾指针可以指向队头位置,形成一个环形结构。这样可以充分利用数组空间,提高队列的效率。 下面是Objective-C实现一个循环队列的示例代码: ``` @interface CircularQueue : NSObject @property(nonatomic, assign) NSInteger head; // 队头指针 @property(nonatomic, assign) NSInteger tail; // 队尾指针 @property(nonatomic, assign) NSInteger size; // 队列大小 @property(nonatomic, strong) NSMutableArray *queueArray; // 队列数组 - (instancetype)initWithSize:(NSInteger)size; // 初始化方法 - (BOOL)enqueue:(id)obj; // 入队方法 - (id)dequeue; // 出队方法 - (BOOL)isEmpty; // 判断队列是否为空 - (BOOL)isFull; // 判断队列是否已满 @end @implementation CircularQueue - (instancetype)initWithSize:(NSInteger)size { if (self = [super init]) { self.head = 0; self.tail = 0; self.size = size; self.queueArray = [NSMutableArray arrayWithCapacity:size]; for (NSInteger i = 0; i < size; i++) { [self.queueArray addObject:[NSNull null]]; } } return self; } - (BOOL)enqueue:(id)obj { if ([self isFull]) { return NO; } self.queueArray[self.tail] = obj; self.tail = (self.tail + 1) % self.size; return YES; } - (id)dequeue { if ([self isEmpty]) { return nil; } id obj = self.queueArray[self.head]; self.queueArray[self.head] = [NSNull null]; self.head = (self.head + 1) % self.size; return obj; } - (BOOL)isEmpty { return self.head == self.tail && self.queueArray[self.head] == [NSNull null]; } - (BOOL)isFull { return self.head == self.tail && self.queueArray[self.head] != [NSNull null]; } @end ``` 在上面的代码,我们使用一个NSMutableArray来保存队列元素,使用head和tail两个指针来指示队头和队尾位置。enqueue方法用于入队操作,dequeue方法用于出队操作,isEmpty方法和isFull方法分别用于判断队列是否为空和已满。注意,在enqueue和dequeue方法,我们使用取模运算来实现循环指针的功能。 使用循环队列可以有效提高队列的效率,特别是在需要频繁插入和删除元素的场景下。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 21
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值