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 · Twitter
April 27, 2003 5:47 PM
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.