标签: java checkstyle
我有这样的代码:
for (int i=0; i < someNumber; i++) { // loop body }
Checkstyle抱怨增量(IllegalTokenCheck)。
为什么在这样的循环中使用递增运算符是一种不好的做法?