[Contents] [Prev] [Next]

Code Conventions for the Java Programming Language

Copyright © 1995-1999, Sun Microsystems, Inc. All Rights Reserved. Used by permission.

Revised April 20, 1999. Format and navigation by Martin Rinehart, www.MartinRinehart.com, May 31, 2005.


4 - Indentation

Four spaces should be used as the unit of indentation. The exact construction of the indentation (spaces vs. tabs) is unspecified. Tabs must be set exactly every 8 spaces (not 4).

4.1 Line Length

Avoid lines longer than 80 characters, since they're not handled well by many terminals and tools.

Note: Examples for use in documentation should have a shorter line length-generally no more than 70 characters.

4.2 Wrapping Lines

When an expression will not fit on a single line, break it according to these general principles: Here are some examples of breaking method calls:

        someMethod(longExpression1, longExpression2, longExpression3, 
        longExpression4, longExpression5);
 
        var = someMethod1(longExpression1,
                someMethod2(longExpression2,
                        longExpression3)); 
Following are two examples of breaking an arithmetic expression. The first is preferred, since the break occurs outside the parenthesized expression, which is at a higher level.

        longName1 = longName2 * (longName3 + longName4 - longName5)
			 + 4 * longname6; // PREFER

        longName1 = longName2 * (longName3 + longName4
                       - longName5) + 4 * longname6; // AVOID 
Following are two examples of indenting method declarations. The first is the conventional case. The second would shift the second and third lines to the far right if it used conventional indentation, so instead it indents only 8 spaces.

        //CONVENTIONAL INDENTATION
        someMethod(int anArg, Object anotherArg, String yetAnotherArg,
                   Object andStillAnother) {
        ...
        }

        //INDENT 8 SPACES TO AVOID VERY DEEP INDENTS
        private static synchronized horkingLongMethodName(int anArg,
                Object anotherArg, String yetAnotherArg,
                Object andStillAnother) {
        ...
        }
Line wrapping for if statements should generally use the 8-space rule, since conventional (4 space) indentation makes seeing the body difficult. For example:

        //DON'T USE THIS INDENTATION
        if ((condition1 && condition2)
            || (condition3 && condition4)
            ||!(condition5 && condition6)) { //BAD WRAPS
            doSomethingAboutIt();            //MAKE THIS LINE EASY TO MISS
        } 

        //USE THIS INDENTATION INSTEAD
        if ((condition1 && condition2)
                || (condition3 && condition4)
                ||!(condition5 && condition6)) {
            doSomethingAboutIt();
        } 

        //OR USE THIS
        if ((condition1 && condition2) || (condition3 && condition4)
                ||!(condition5 && condition6)) {
            doSomethingAboutIt();
        } 
Here are three acceptable ways to format ternary expressions:

        alpha = (aLongBooleanExpression) ? beta : gamma;  

        alpha = (aLongBooleanExpression) ? beta
                                         : gamma;  

        alpha = (aLongBooleanExpression)
                ? beta 
                : gamma;  


[Contents] [Prev] [Next]