第一句子网 - 唯美句子、句子迷、好句子大全
第一句子网 > for循环中 外循环1000 内循环100和外循环100 内循环1000哪个性能更高?

for循环中 外循环1000 内循环100和外循环100 内循环1000哪个性能更高?

时间:2023-02-28 11:01:43

相关推荐

for循环中 外循环1000 内循环100和外循环100 内循环1000哪个性能更高?

1、直接上代码

public class Demo {public static void main(String[] args) {System.out.println("firstTime:" + Demo.first() + "毫秒"); /*255毫秒*/System.out.println("secondTime:" + Demo.second() + "毫秒");/*267毫秒*/}/*** 计算for循环(外循环1000、内循环100)遍历的时间毫秒值* @return 时间的毫秒值*/private static long first() {/*获取当前时间的毫秒值*/long start = System.currentTimeMillis();for (int i = 0; i < 1000; i++) {for (int j = 0; j < 100; j++) {System.out.println("*");}}/*获取for循环遍历后的时间毫秒值*/long end = System.currentTimeMillis();/*计算for循环(外循环1000、内循环100)遍历所需的时间毫秒值*/long firstTime = end - start;return firstTime;}/*** 计算for循环(外循环100、内循环1000)遍历的时间毫秒值* @return 时间的毫秒值*/private static long second() {/*获取当前时间的毫秒值*/long start = System.currentTimeMillis();for (int i = 0; i < 100; i++) {for (int j = 0; j < 1000; j++) {System.out.println("*");}}/*获取for循环遍历后的时间毫秒值*/long end = System.currentTimeMillis();/*计算for循环(外循环100、内循环1000)遍历所需的时间毫秒值*/long secondTime = end - start;return secondTime;}}

2、输出打印结果

firstTime:255毫秒secondTime:267毫秒

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。