欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

筛选实体类集合中实体的某一个属性的集合

程序员文章站 2022-06-15 13:37:52
...

比如:筛选accountList这个集合中Account实体的accountPhone这个属性的集合列表

  List<String> accountPhones = Lists.transform(accountList, new Function<Account, String>() {
            @Nullable
            @Override
            public String apply(@Nullable Account account) {
                return account.getAccountPhone();
            }
        });

返回值List< String >: String为筛选的属性的类型
Lists.transform():为google的guava这个jar包
accountList:为实体集合
Account:为实体
account.geAccountPhone():为筛选的属性

相关标签: 列表 java