PMD规则之Braces Rules

·  IfStmtsMustUseBraces: Avoid using if statements without using curly braces.

翻译  if块必须用括号:避免使用if块时不使用花括号{}

·  WhileLoopsMustUseBraces: Avoid using 'while' statements without using curly braces.

翻译  while循环必须使用括号:避免使用while块时不使用{}

·  IfElseStmtsMustUseBraces: Avoid using if..else statements without using curly braces.

翻译  if…else…块必须使用括号:避免使用if…else…块时不使用{}

·  ForLoopsMustUseBraces: Avoid using 'for' statements without using curly braces.

翻译  for循环必须使用括号:避免在for循环时不使用{}

你可能感兴趣的:(其它,JAVA)