I have just started learning objective c and the asterisk is giving me some trouble. As I look through sample code, sometime it is used when declaring a variable and sometimes it is not. What are the "rules" for when it should be used. I thought it had something to do with the data type of the variable. (asterisk needed for object data types, not needed for simple data types like int) However, I have seen object data types such as CGPoint declared without the asterisk as well? Is there a definitive answer or does it have to do with how and what you use the variable for?
|
1
|
|
|
|
|
|
You use the asterisk to declare a pointer. For a Cocoa object, you're always declaring a pointer, so you always use an asterisk. You can't put the object itself into the variable; you always handle a pointer to the object. For other things, it depends on whether the variable will contain the object (in the C sense) or a pointer to the object-somewhere-else. If the variable should contain the object, then you don't declare it with an asterisk, because you're not putting a pointer in it. If it should contain a pointer, then you do declare it with an asterisk. You can even have a pointer to a pointer; as you might expect, this involves multiple asterisks. For example,
Sort of. The asterisk is needed for Cocoa objects because you can only handle pointers to Cocoa objects, never the objects themselves. But the rules for declaration are no different for Cocoa objects; they are exactly the same. You use the asterisk when you want a pointer variable; you don't when you want a non-pointer variable. The only exception, the only difference for Cocoa objects from the usual rules, is that you are not allowed to declare a variable holding the object itself. That's why you never see a variable holding a Cocoa object instead of a pointer to one: the compiler won't allow it.
CGPoint is a structure, not a Cocoa object. As such, you can declare a variable that holds a CGPoint and not a pointer to one somewhere else. |
||||||
|
|
|
The asterisk indicates the variable is a pointer to a datatype. You should look into pointers for more information. They are a very important and fundamental aspect of programming. |
||||
|
|
|
I think you should read a bit on C programming first. Objective-C is a superset of C. The reason why you don't use * for declaring CGPoint is because CGPoint is a struct, take a look in the CGGeometry.h header file. |
||||
|
|
|
You use a An example may help.
The
Further, you cannot declare an instance of a class(an object), like
Here One last example:
What would the value of
This would affect the numeric value Look at this Wikipedia article on C/C++ pointers for some more examples of how, when, and why to use an |
||||
|
|
|
Sounds like you've got the rule figured out: asterisk for pointer, no asterisk otherwise. The trouble is, there is no rule for determining whether or not something like CGPoint will require a pointer without looking at the header file. As Welbog said, the real distinction between when to use/not use a pointer is whether you're allocating on the heap or the stack, although most of the time you'll only need to determine whether you're working with an object (asterisk) or a primitive (no asterisk). |
||
|
|
|
|
The answer is very simple: you should always use the asterisk when using Objective-C objects. The reason is that they can't be allocated on the stack, so you cannot do what you can do with structures like CGPoint. The designers of Objective-C chose, I suppose, to make you always add that asterisk because they are pointers to memory like other C-pointers. |
||
|
|
