if i did this
Object * myObject = [[Object alloc]init];
[myObject release];
is there anything wrong about allocating my object in next line
myObject = [[Object alloc]init];
again?
|
if i did this
is there anything wrong about allocating my object in next line
again? |
|||
|
|
|
No problem at all.
Later, |
||||
|
|
This is safe to do. The reason is that |
|||
|
|
|
There is nothing wrong with that. That is how you make sure you don't leak your first object. However, you are not technically allocating the released object again. You are just using the old pointer again.
will result in leaking the first object you created. |
||||
|
yes of course. this technique is specially useful in local method variables where you can reuse the object declared once by reallocating it again as new object..!! |
|||
|
|