美文网首页
使用Java的一些tips

使用Java的一些tips

作者: tenlee | 来源:发表于2017-03-15 16:33 被阅读44次

不断更新中...

stream操作

  • 使用stream 把list 转 map
Map<String, Choice> result =
    choices.stream().collect(Collectors.toMap(Choice::getName,
                                              Function.identity()));
//如果key可能重复,这样做
Map<String, Choice> result =
    choices.stream().collect(Collectors.toMap(Choice::getName,
                                              Function.identity(), (v1, v2)->v1);
  • 分组
List<Item> items = Arrays.asList(  
               new Item("apple", 10),  
               new Item("banana", 20)
       );  
// 分组
Map<String, List<Item> nameGroup = items.stream().collect(  
               Collectors.groupingBy(Item::getName));  
// 分组统计
Map<String, Long> nameCount = Item.stream().collect(Collectors.groupingBy(Item::getName, Collectors.counting()));

Map<String, Integer> nameSum = items.stream().collect(Collectors.groupingBy(Item::getName, Collectors.summingInt(Item::getCount)));

其他

  • Java7以上使用 try-with-resources语法 关闭在try-catch语句块中使用的资源.
    这些资源须实现java.lang.AutoCloseable接口
private static void printFileJava7() throws IOException {
    try(  FileInputStream input = new FileInputStream("file.txt");
          BufferedInputStream bufferedInput = new BufferedInputStream(input)
    ) {
        int data = bufferedInput.read();
        while(data != -1){
        System.out.print((char) data);
        data = bufferedInput.read();
        }
      }
}
  • 判断 集合 为空 ,使用Apache CollectionUtils工具类,maven配置
<dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>3.2.2</version>
 </dependency>
  • 返回空集合 Collections.emptyList(),Set为Collections.emptySet()
  • toString使用Apache ReflectionToStringBuilder.toString
    maven配置
<dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.5</version>
</dependency>

使用:

@Override
    public String toString() {
        return ReflectionToStringBuilder.toString(this,
                ToStringStyle.MULTI_LINE_STYLE);
    }
  • 判断两个对象是否equal
    使用Objects.equals()方法,可以避免空指针异常
String str1 = null, str2 = "test";
str1.equals(str2); // 空指针异常
Objects.equals(str1, str2); // OK

Objects.equals的实现为

 public static boolean equals(Object a, Object b) {
        return (a == b) || (a != null && a.equals(b));
    }
  • 尽量多使用Optional
    一般情况下获取某人汽车的名称
if (person != null) {
    if (person.getCar() != null) {
       return person.getCar().getName();
    }
}

如果使用Optional,就优美很多

Optional<Person> p = Optional.ofNullable(person);
return p.map(Person::getCar).map(Car::getName).orElse(null);

详细了解Optional

  • Map遍历
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
    System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue());
}

相关文章

  • 使用Java的一些tips

    不断更新中... stream操作 使用stream 把list 转 map 分组 其他 Java7以上使用 tr...

  • 实习随笔| 周记(二)

    本周知识清单: 开发小tips Java基础之集合类 一些小感悟 1.开发小tips 看项目代码的时候发现了一些不...

  • Android异常--空指针异常

    总结自: Java Tips and Best Practices to avoid NPE in Java Ap...

  • otto源码解析

    tips: 接口的使用 判断是否为主线程: 主要是Bus.java里面的代码:关键的方法有 public void...

  • javascript tips记录

    使用javascript过程中遇到的一些tips javascript if 语句 javascript的条件语句...

  • 好用的软件:Typora

    官网:Typora[https://typora.io/] 一些使用Tips: 采用markdown语法,可以让你...

  • Android studio 简单使用

    tips 本文旨在 简要阐述一些使用 Android studio中的一些坑 最新版下载 studio canar...

  • Android笔记:数据持久化存储

    数据存储 瞬时数据会在程序关闭时销毁 文件存储 Context类下的文件处理方法 Tips:可以使用Java的Fi...

  • Java 9 揭秘(10. 模块API高级主题)

    Tips做一个终身学习的人。 十四. 使用模块层 使用模块层是一个高级主题。 典型的Java开发人员不需要直接使...

  • Java Util Concurrent 包笔记

    Java Util Concurrent 这个包值得反复看这里只是记录一些相对比较粗略的设计tips,越来越觉得优...

网友评论

      本文标题:使用Java的一些tips

      本文链接:https://www.haomeiwen.com/subject/fpdlnttx.html