Re: self
Re: self
- Subject: Re: self
- From: Damien Bobillot <email@hidden>
- Date: Wed, 8 Jun 2005 17:23:03 +0200
Le 8 juin 05 à 16:59, Theodore H. Smith a écrit :
Am I right in thinking that self is a local (stack based) variable?
Yes, "self" is a local variable.
for example the code:
-(id) init {
self = [self initSpecial];
return self;
}
should alter everything in exactly the same way as:
-(id) init {
return [self initSpecial];
}
--
Damien Bobillot
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
References: | |
| >self (From: "Theodore H. Smith" <email@hidden>) |