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 循环时不使用 {}

 

 

更多请参考:http://blog.csdn.net/jack0511/article/details/5260751

 

你可能感兴趣的:(Rule)