for循环之性能优化1、写在第一个(消除循环终止判断时的方法调用)stratTime=System.nanoTime();for(inti=0;i<list.size();i++){}endTime=System.nanoTime();System.out.println("未优化l