Quote of the Day
Premature optimization is the root of all evil (or at least most of it) in programming.
—Donald Knuth
1 Comment »
RSS feed for comments on this post.
Friday, April 25, 2003
Premature optimization is the root of all evil (or at least most of it) in programming.
—Donald Knuth
RSS feed for comments on 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.