in reply to There's Only One Way To Do It
As you might expect, the most rapidly implemented solutions were the ones done in the scripting languages. The fastest solutions were in C.
As you might not expect, the slowest solutions were in C. Furthermore the variation both in time to implement and runtime performance were far larger in C than in scripting languages.
What seemed to happen is that the scripting languages provided an obvious good approach to the problem, and everyone took that with decent results. In C there were many choices to make, with more difficult to see consequences for time to implement and runtime performance. (Which is exactly what you are talking about having happen.)
I'd wager that Java would have resembled C in this particular test, but without the performance.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: There's Only One Way To Do It
by jdporter (Paladin) on Apr 07, 2004 at 17:40 UTC | |
by tilly (Archbishop) on Apr 07, 2004 at 18:22 UTC |