【有趣的实验】JAVA 遍历数组的几种方式的耗时对比「建议收藏」

【有趣的实验】JAVA 遍历数组的几种方式的耗时对比「建议收藏」JAVA遍历数组的几种方式的耗时对比

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

一、前言

出于对遍历方式的耗时想法,是普通for循环、fori、foreach、迭代器 iterator、还是steam流的形式哪种耗时更少呢?

首先添加一个List 集合,这边采用ArraryList

        ArrayList<Integer> list = new ArrayList<Integer>();
        list = new ArrayList<Integer>();
        long startTime = System.currentTimeMillis();
        for (int i = 0; i < 10000000; i++) {
            list.add(i);
        }

下面是几种方式

1.1、普通for循环

    long startTime = System.currentTimeMillis();
    for (int i = 0; i < list.size(); i++) {
        int a = 0;
        a += list.get(i);
    }
    System.out.println("耗时:" + (System.currentTimeMillis() - startTime));

1.2 增强for循环

    long startTime = System.currentTimeMillis();
    for (Integer itr : list) {
        int a = 0;
        a += itr;
    }
    System.out.println("增强for耗时:" + (System.currentTimeMillis() - startTime));

 1.3 迭代器

        long startTime3 = System.currentTimeMillis();
        Iterator<Integer> iterator = list.iterator();
        while (iterator.hasNext()) {
            int xx=0;
            Integer next = iterator.next();
            xx += next;
        }
        System.out.println("迭代器耗时:" + (System.currentTimeMillis() - startTime3));

1.4 forEach

       long startTime4 = System.currentTimeMillis();
        list.forEach(integer -> {
            int xx=0;
            xx += integer;
        });
        System.out.println("foreach耗时:" + (System.currentTimeMillis() - startTime4));

1.5 stream流

        long startTime5 = System.currentTimeMillis();
        list.stream().forEach(integer -> {
            int xx=0;
            xx += integer;
        });
        System.out.println("stream流耗时:" + (System.currentTimeMillis() - startTime5));

一千万数据在耗时情况如下:

【有趣的实验】JAVA 遍历数组的几种方式的耗时对比「建议收藏」

 可以看到普通for循环时间更少。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/191885.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号