Indent Style - Horstmann Style

Horstmann Style

The 1997 edition of Computing Concepts with C++ Essentials by Cay S. Horstmann adapts Allman by placing the first statement of a block on the same line as the opening brace.

while (x == y) { something; somethingelse; //... if (x < 0) { printf("Negative"); negative(x); } else { printf("Non-negative"); nonnegative(x); } } finalthing;

This style combines the advantages of Allman by keeping the vertical alignment of the braces for readability and easy identification of blocks, with the saving of a line of the K&R style. However the 2003 edition now uses Allman style throughout.

Read more about this topic:  Indent Style

Famous quotes containing the word style:

    A cultivated style would be like a mask. Everybody knows it’s a mask, and sooner or later you must show yourself—or at least, you show yourself as someone who could not afford to show himself, and so created something to hide behind.... You do not create a style. You work, and develop yourself; your style is an emanation from your own being.
    Katherine Anne Porter (1890–1980)