jdk 1.8 新特性使用

虽然jdk1.8已经是很久以前更新的了,但是开发人员对于1.8的新特性使用可能不是很多,接下来文章会说一些1.8中用的比较多的功能,赶紧学起来

1,首先用的最多的是stream流的使用

以前我们对于集合的遍历是这样的(举个例子)

   for (User user : list) {
            //执行便利后的操作
            user.setAge(user.getAge()+1);
        }

stream在jdk1.8中使用

 list.stream().forEach(r->{
            r.setAge(r.getAge()+1);
        });

在1.8中流对于集合还有很便利的操作

//获取集合中年龄大于10的用户
        list.stream().filter(user -> user.getAge()>10).collect(Collectors.toList());
        //根据用户的年纪排序
        list.stream().sorted(Comparator.comparing(User::getAge)).collect(Collectors.toList());
        //获取该集合中年龄最大的用户
        list.stream().max(Comparator.comparing(User::getAge)).get();
        //将用户集合中的用户年龄单独取出作为一个集合(常用与日常开发中根据主表id去查询子表数据的业务中)
        list.stream().map(User::getAge).collect(Collectors.toList());    
        //将集合按照key是用户id,value是用户本省的map集合
        list.stream().collect(Collectors.toMap(User::getId, Function.identity()));

这些是开发中常用的一些流的操作,我们在开发中可以组合起来操作

2,接下来是对于流的操作(输入流,输出流)

众所周知,我们在之前使用输入流,输出流的时候每次使用完之后都需要关闭流,但是在1.8以后我们还需要关闭吗?不需要了,1.8已经帮我们实现了自动关闭的功能了,那编码和以前有什么区别呢,1.8又是怎么样实现的呢?
那这其中最关键的一个接口

public interface AutoCloseable {
    /**
     * Closes this resource, relinquishing any underlying resources.
     * This method is invoked automatically on objects managed by the
     * {@code try}-with-resources statement.
     *
     * <p>While this interface method is declared to throw {@code
     * Exception}, implementers are <em>strongly</em> encouraged to
     * declare concrete implementations of the {@code close} method to
     * throw more specific exceptions, or to throw no exception at all
     * if the close operation cannot fail.
     *
     * <p> Cases where the close operation may fail require careful
     * attention by implementers. It is strongly advised to relinquish
     * the underlying resources and to internally <em>mark</em> the
     * resource as closed, prior to throwing the exception. The {@code
     * close} method is unlikely to be invoked more than once and so
     * this ensures that the resources are released in a timely manner.
     * Furthermore it reduces problems that could arise when the resource
     * wraps, or is wrapped, by another resource.
     *
     * <p><em>Implementers of this interface are also strongly advised
     * to not have the {@code close} method throw {@link
     * InterruptedException}.</em>
     *
     * This exception interacts with a thread's interrupted status,
     * and runtime misbehavior is likely to occur if an {@code
     * InterruptedException} is {@linkplain Throwable#addSuppressed
     * suppressed}.
     *
     * More generally, if it would cause problems for an
     * exception to be suppressed, the {@code AutoCloseable.close}
     * method should not throw it.
     *
     * <p>Note that unlike the {@link java.io.Closeable#close close}
     * method of {@link java.io.Closeable}, this {@code close} method
     * is <em>not</em> required to be idempotent.  In other words,
     * calling this {@code close} method more than once may have some
     * visible side effect, unlike {@code Closeable.close} which is
     * required to have no effect if called more than once.
     *
     * However, implementers of this interface are strongly encouraged
     * to make their {@code close} methods idempotent.
     *
     * @throws Exception if this resource cannot be closed
     */
    void close() throws Exception;
}

你去看看jdk中常用的流,你去看看他们的底层代码,没错都继承/实现了这个接口,这个接口的作用就是帮我们关闭流,那我们现在代码中应该怎么写呢?

 try (FileOutputStream out = new FileOutputStream(new File("C://XXX"));
             FileInputStream in = new FileInputStream(new File("C://XXX"));
        ) {
            in.read();
            out.write(12);
        } catch (IOException e) {
            e.printStackTrace();
        }

这只是举个例子,具体的业务逻辑啥的根据自己功能来写,这两个流就会在执行完之后自动关闭,当然我们也可以模拟jdk对于流的操作,比如我们在使用redis来做分布式锁的时候我们可以给我们的分布式锁的工具类实现AutoCloseable 接口重写close方法,然后在close方法中完成对与锁的释放,根据自己业务需求可自由发挥使用

3,Optional的使用

Optional可以在很大程度上减少空指针的出现,话不多说直接上代码

        ArrayList<User> list = new ArrayList<>();
        //判断user是否为空如果为空就返回新创建的user
        Optional.ofNullable(user).orElse(new User());
        Optional<User> max = list.stream().max(Comparator.comparing(User::getAge));
        //判断对象是否存在
        boolean present = max.isPresent();
        //获取返回的具体的对象实体
        User user1 = max.get();

4,时间类LocalDateTime及其周边

在jdk1.8以后对于时间日历的操作更加方便了

       Calendar calendar = Calendar.getInstance();
        calendar.setTimeInMillis(System.currentTimeMillis() * 1000);
        //获取年
        calendar.get(Calendar.YEAR);
        //获取月
        calendar.get(Calendar.MONTH);
        //获取日
        calendar.get(Calendar.DAY_OF_MONTH);
        //获取时
        calendar.get(Calendar.HOUR_OF_DAY);
        //获取分
        calendar.get(Calendar.MINUTE);
        //获取秒
        calendar.get(Calendar.MILLISECOND);

现在的操作

        LocalDateTime now = LocalDateTime.now();
        int year = now.getYear();
        int monthValue = now.getMonthValue();
        int dayOfMonth = now.getDayOfMonth();
        int dayOfMonth1 = now.getDayOfMonth();
        int hour1 = now.getHour();
        int minute1 = now.getMinute();
        int second = now.getSecond();

更加方便的是对时间/日期的操作

        LocalDateTime now = LocalDateTime.now();
        int year = now.getYear();
        int monthValue = now.getMonthValue();
        int dayOfMonth = now.getDayOfMonth();
        int dayOfMonth1 = now.getDayOfMonth();
        int hour1 = now.getHour();
        int minute1 = now.getMinute();
        int second = now.getSecond();
        //添加一天
        LocalDateTime localDateTime = now.plusDays(1);
        //添加一个小时
        LocalDateTime localDateTime1 = now.plusHours(1);
        //添加一分钟;
        LocalDateTime localDateTime2 = now.plusMinutes(1);
        //添加一周
        LocalDateTime localDateTime3 = now.plusWeeks(1);
        //比较两个时间的大小
        int i = localDateTime.compareTo(localDateTime3);
        localDateTime1.isAfter(localDateTime2);
        localDateTime1.isBefore(localDateTime2);
        localDateTime1.isEqual(localDateTime2);
        //此外还提供了更加便捷的创建日历、时间的方式
        LocalDateTime localDateTime4 = LocalDateTime.of(2020, 10, 21, 15, 30, 22);
        LocalDate localDate = LocalDate.of(2020, 10, 21);
        LocalTime localTime = LocalTime.of(12, 20, 12, 223);
        //本月的第1天
        localDate.with(TemporalAdjusters.firstDayOfMonth());
        //下月的第1天
        localDate.with(TemporalAdjusters.firstDayOfNextMonth());
        localDate.with(TemporalAdjusters.firstDayOfNextYear());
        //日期转时间戳ZoneOffset.of("+8")设置的是时区
        Long second1 = localDateTime4.toEpochSecond(ZoneOffset.of("+8"));
        //获取毫秒数
        Long milliSecond = localDateTime4.toInstant(ZoneOffset.of("+8")).toEpochMilli();
        //转字符串
        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMddHHmmssSSS");
        String format = localDateTime4.format(formatter);
        //还有一种创建的时候带时区的日历类(方法相似就不做阐述了)
        ZoneId zoneId = ZoneId.of("UTC+1");
        ZonedDateTime zonedDateTime = ZonedDateTime.now(zoneId);

在实际开发中灵活运用可以有效地提高开发的效率和代码质量。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,335评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,895评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,766评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,918评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,042评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,169评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,219评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,976评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,393评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,711评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,876评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,562评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,193评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,903评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,699评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,764评论 2 351

推荐阅读更多精彩内容

  • 16宿命:用概率思维提高你的胜算 以前的我是风险厌恶者,不喜欢去冒险,但是人生放弃了冒险,也就放弃了无数的可能。 ...
    yichen大刀阅读 6,042评论 0 4
  • 公元:2019年11月28日19时42分农历:二零一九年 十一月 初三日 戌时干支:己亥乙亥己巳甲戌当月节气:立冬...
    石放阅读 6,877评论 0 2
  • 今天上午陪老妈看病,下午健身房跑步,晚上想想今天还没有断舍离,马上做,衣架和旁边的的布衣架,一看乱乱,又想想自己是...
    影子3623253阅读 2,909评论 1 8