关于for循环性能 - ITeye问答
关于for循环性能10 public static void test1(){ long t1 = System.currentTimeMillis(); for(int i=0;i<1000000;i++){ System.out.println("aaa"); ...
关于for循环条件性能问题 - gw2010 - 博客园
2013年11月28日 - 关于for循环条件性能问题 昨天看一博客写到一条 尽量使用 for(int i=0,ct=list.Count();i<ct;i++){} 这样的格式,因为我平时一般都是用for(int i=0;i<...