Expression indentation for if statement : If Statement « Statement Control « Java Tutorial






If the expression is too long, you can use two units of indentation for subsequent lines.

public class MainClass {

  public static void main(String[] args) {
    int numberOfLoginAttempts = 10;
    int numberOfMinimumLoginAttempts = 12;
    int numberOfMaximumLoginAttempts = 13;
    int y = 3;

    if (numberOfLoginAttempts < numberOfMaximumLoginAttempts
        || numberOfMinimumLoginAttempts > y) {
      y++;
    }
  }

}








4.2.If Statement
4.2.1.The if statement syntax
4.2.2.Expression indentation for if statement
4.2.3.Using braces makes your 'if' statement clearer
4.2.4.Multiple selections
4.2.5.The if Statement in action
4.2.6.The else Clause
4.2.7.Nested if Statements
4.2.8.Using && in if statement
4.2.9.Using || (or operator) in if statement