self
self
- Subject: self
- From: "Theodore H. Smith" <email@hidden>
- Date: Wed, 8 Jun 2005 15:59:58 +0100
Am I right in thinking that self is a local (stack based) 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];
}
--
http://elfdata.com/plugin/ Industrial strength string processing,
made easy.
"All things are logical. Putting free-will in the slot for premises in
a logical system, makes all of life both understandable, and free."
_______________________________________________
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
- Follow-Ups:
- Re: self
- From: Ondra Cada <email@hidden>
- Re: self
- From: Andy Lee <email@hidden>
- Re: self
- From: Pontus Ilbring <email@hidden>
- Re: self
- From: Damien Bobillot <email@hidden>
- Re: self
- From: Clark Cox <email@hidden>