|
| From: | Leigh Smith |
| Subject: | Re: Objective-C and Smalltalk; speed of message send |
| Date: | Thu, 19 Aug 2004 12:23:33 -0400 |
Maybe ... I think that most likely the main problem is using stringWithFormat:
That method is slow for a variety of reasons (it's probably faster now than when the smalltalk test was done),
not least the fact that it uses the autorelease mechanism. Autorelease is fundamentally pretty slow, and a
good garbage collection system would perform better. However, retain/release/autorelease is the way
things are currently done.
| [Prev in Thread] | Current Thread | [Next in Thread] |