I want to know why id is a weak reference pointer,how it is able to handle any class type pointer and at run time how can we detect that which type of class pointer is assigned to id.
|
|
|||
|
|
However, you could say that
That’s part of the definition of the Objective-C language. The compiler recognises
In Apple’s Objective-C runtime, the first bytes in the memory allocated to an object must point to that object’s class. You might see this referenced elsewhere as the If you have an
1Tagged pointers are a notable deviation of this structure, and (partly) because of them one shouldn’t access the |
|||
|
|
|
It's nice to have a generic object type, so you can define collection types that can hold any kind of object, and other generic services that work with any object without knowing what kind of object it is. There is no trick to make id work. At a binary level all pointers are interchangeable. They just represent a memory address as a numerical value. To make id accept any type of pointer, it's only necessary to disable the rules of the compiler that normally require pointer types to match. You can find out information about the class of an id type variable in these kinds of ways:
But it's rarely necessary to do those kinds of things in code. More often, you want to test if your id variable is an instance of a particular class, and if so cast it to that class and start treating it as that type.
If you were to use You can sometimes use |
|||
|
|
|
It may be worth to take a look on header file objc/objc.h to find internals of
|
|||
|
|