for和foreach循环的效率对比
不同的for循环效率是不尽相同的:下面做出对比:第一种for循环:(int i = 0; i /* * 第一种for循环,循环体中使用 i < arrayInt.length作为判断语句 * */ for(int i = 0; i < arrayInt.length; i++){ System.out.print(1); }第二种for循环:(int le