Quote of the Day
Premature optimization is the root of all evil (or at least most of it) in programming.
—Donald Knuth
1 Comment
Stay up-to-date by subscribing to the Comments RSS Feed for this post.
Friday, April 25, 2003 [Tweets]
Premature optimization is the root of all evil (or at least most of it) in programming.
—Donald Knuth
Stay up-to-date by subscribing to the Comments RSS Feed for this post.
I definitely agree. Even in intro programming classes you get students asking questions like: "But isn't a function call expensive?" That's why lots of people still use languages like C/C++ when they should be using Java, Python, ... and then optimizing those parts that profilers report as crucial.