[Prev][Next][Index][Thread]

Re: comments on Eiffel vs. Objective-C?



In article <39031b73.74375185@news2.one.net>, suk@pobox.com wrote:

> Speed is simply no longer a universal factor in favoring static over
> dynamic typing.  This is an outdated myth.  It is true only in
> specific cases (image processing).  It is not often true in developing
> business client-server apps.  In this case, you are often better off
> using the dynamically typed language, but also profiling and writing
> custom primitives or modules in C or Fortran.  This gives one the best
> of both worlds -- high level, elegant description of your problem
> domain and close to the metal speed.  

Alternatively, you can write using a dynamic, no (or few) declarations,
style in Dylan, profile the code, and incrementally insert declarations in
the hot spots, once again getting "close to the metal speed", but without
having to use more than one language and without having to write anything
twice.

-- Bruce



Follow-Ups: