"Go" instancetype and ID keywords in iOS objective-c-association return type and non-associative return type

Source: Internet
Author: User
Tags vars

instancetype and ID keywords in objective-cCategory: Objective-c2013-11-28 19:48 5421 People read Comments (1) favorite reports clangobjective-c compiler Cocoainstancetype

Directory (?) [+]

Instancetype and ID keywords in objective-c wangzz original address: http://blog.csdn.net/wzzvictory/article/details/ 16994913 Reprint Please specify the source if you feel that the article is helpful, please leave a message or pay attention to the public account wangzzstrive to support me, thank you!

First, what is Instancetype

Instancetype is clang 3.5, a keyword provided by clang that represents an unknown type of objective-c object returned by a method. We all know that an object of an unknown type can be represented by an ID keyword, so why is there another instancetype?

Ii. Association return type (related result types)

According to the naming rules of cocoa, the following rules are met:

1. In the class method, start with alloc or new

2. In the instance method, start with autorelease,init,retain or self

Returns an object of the class type of a method, known as a method that associates a return type. In other words, the return result of these methods is the type of the class in which the method is located, which is a bit around the mouth, see the following example:

[OBJC]View Plaincopy
    1. @interface NSObject
    2. + (ID) alloc;
    3. -(ID) init;
    4. @end
    5. @interface Nsarray:nsobject
    6. @end
When we initialize Nsarray using the following method: [OBJC]View Plaincopy
    1. Nsarray *array = [[Nsarray alloc] init];
According to the naming rules of cocoa, statements[Nsarray alloc] The type is nsarray* because the return type of Alloc belongs to the associated return type. Same[[Nsarray alloc]init] The return result is also nsarray*.

Third, Instancetype role 1, function

If a method is not associated with the return type, as follows:

[OBJC]View Plaincopy
    1. @interface Nsarray
    2. + (ID) constructanarray;
    3. @end

When we initialize Nsarray using the following method:

[OBJC]View Plaincopy
    1. [Nsarray Constructanarray];
According to the cocoa Method naming specification, the resulting return type is the same as the return type of the method declaration, which is the ID.

However, if you use Instancetype as the return type, as follows:

[OBJC]View Plaincopy
    1. @interface Nsarray
    2. + (instancetype) Constructanarray;
    3. @end
When initializing Nsarray in the same way: [OBJC]View Plaincopy
    1. [Nsarray Constructanarray];
The resulting return type and method are the same type as the class, which is nsarray*!

To summarize, the Instancetype function is to make the methods of the non-associative return type return the type of the class!

2. Benefits

Being able to determine the type of an object can help the compiler better position code for us, such as:

[OBJC]View Plaincopy
    1. [[[Nsarray alloc] init] Mediaplaybackallowsairplay]; //"No visible @interface for ' Nsarray ' declares the selector ' Mediaplaybackallowsairplay '"
    2. [[Nsarray array] Mediaplaybackallowsairplay]; //(No error)
The first line of code in the example above, becausethe result of [[Nsarray alloc]init] is nsarray*, which allows the compiler to detect whether Nsarray implements the Mediaplaybackallowsairplay method based on the returned data type. Helps developers find errors during the compile phase.

The second line of code, because the array does not belong to the associated return type method,[Nsarray array] Returns the ID type, and the compiler does not know whether an object of the ID type implements the Mediaplaybackallowsairplay method, will not be able to find fault for developers in time.

Iv. similarities and differences between Instancetype and ID 1, the same point

Can be used as the return type of a method

2, different points

①instancetype can return objects of the same type as the method's class, and the ID can only return objects of unknown type;

②instancetype can only be used as a return value, not as a parameter like an ID, as in the following notation:

[OBJC]View Plaincopy
    1. Err,expected a type
    2. -(void) SetValue: (instancetype) value
    3. {
    4. //do something
    5. }
is wrong and should be written as: [OBJC]View Plaincopy
    1. -(void) SetValue: (ID) value
    2. {
    3. //do something
    4. }

V. References

1, http://nshipster.com/instancetype/

2, Http://clang.llvm.org/docs/LanguageExtensions.html#objective-c-features

"Go" instancetype and ID keywords in iOS objective-c-association return type and non-associative return type

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.