fbpx
May 5, 2024

Slashdot: Ask Slashdot: How Do You Read Code?

Ask Slashdot: How Do You Read Code?
Published on July 12, 2017 at 06:50PM
New submitter Gornkleschnitzer writes: The majority of humans read silently by rendering a simulation of the printed words as if they were being spoken. By reading that sentence, chances are you’re now stuck being conscious of this, too. You’re welcome.

As a programmer (and a reader of fanfiction), plenty of things I read are not valid English syntax. When I find myself reviewing class definitions, for loops, and #define macros, I rely on some interesting if inconsistent mental pronunciation rules. For instance, int i = 0; comes out as “int i equals zero,” but if(i == 0) sometimes comes out as either “if i is zero” or “if i equals equals zero.” The loop for(size_t i = 0; i < itemList.size(); ++i) generally translates to “for size T i equals zero, i less than item list dot size, plus-plus i.” I seem to drop C++ insertion/extraction operators entirely in favor of a brief comma-like pause, with cout << str << endl; sounding like “kowt, stur, endel.”

What are your code-reading quirks?

Read more of this story at Slashdot.

%d bloggers like this: