1.初步尝试java中的集合使用方式:
public static void main( String [] args ) { //List 对象 User user=User.builder().id(0).name("huhua"+0).build(); //a.最常见Add的初始化方式 List<User> users=new ArrayList<User>(); for (int i=0;i<100;i++) { users.add(User.builder().id(i).name("huhua"+i).build()); } //b.使用双花括号在初始化的同时赋值 List<User> users2= new ArrayList<User>() {//这个大括号 就相当于我们 new 接口 {//这个大括号 就是 构造代码块 会在构造函数前 调用 this.add(new User(0,"huahua0")); this.add(new User(1,"huahua1")); } }; //c.利用Lists工具类 https://ifeve.com/google-guava/ //c1. Lists 提供了两个方法:一个是创建一个空列表;。 List<String> list1 = Lists.newArrayList(); list1.add("str1"); list1.add("str2"); list1.add("str3"); //c2.一个是创建空列表的同时遍历迭代器,将它的值添加到列表中 List<String> list2 = Lists.newArrayList(list1.iterator()); //d. 利用Arrays工具类 List<String> arrList= Arrays.asList( new String[]{"huahu0","huahau1","huahua2"}); //e.Collections 还提供了一个为 List 一次性添加所有元素的方法,弥补了原先 List 只能添加 Collections,而不支持数组的缺憾。 List<String> list3 = new ArrayList<>(); Collections.addAll(list1, new String[]{"str1", "str2", "str3"}); Collections.addAll(list1, "str4", "str5", "str6"); //f.流式转化:流是 Java8 的新特性,提供了一种类似 SQL 语句从数据库中查询数据的方式,通过封装好的函数和链式调用,高阶抽象并简化操作。 //它可以对传入流内部的元素进行筛选、排序、聚合等中间操作(intermediate operate),最后由最终操作(terminal operation)得到前面处理的结果。 //通过静态的 Stream.of 方法接收元素,然后通过 collect 方法处理得到最终结果。 List<String> list4 = Stream.of("str1", "str2", "str3").collect(Collectors.toList()); //g.Map方法现在缺失 }
2. 工具类 google-guava 简介
Guava工程包含了若干被Google的 Java项目广泛依赖 的核心库,例如:集合 [collections] 、缓存 [caching] 、原生类型支持 [primitives support] 、并发库 [concurrency libraries] 、通用注解 [common annotations] 、字符串处理 [string processing] 、I/O 等等。 所有这些工具每天都在被Google的工程师应用在产品服务中。
添加引用
访问官网地址: https://ifeve.com/google-guava/
目录 1. 基本工具 [Basic utilities] 让使用Java语言变得更舒适 1.1 使用和避免null:null是模棱两可的,会引起令人困惑的错误,有些时候它让人很不舒服。很多Guava工具类用快速失败拒绝null值,而不是盲目地接受 1.2 前置条件: 让方法中的条件检查更简单 1.3 常见Object方法: 简化Object方法实现,如hashCode()和toString() 1.4 排序: Guava强大的”流畅风格比较器” 1.5 Throwables:简化了异常和错误的传播与检查 2. 集合[Collections] Guava对JDK集合的扩展,这是Guava最成熟和为人所知的部分 2.1 不可变集合: 用不变的集合进行防御性编程和性能提升。 2.2 新集合类型: multisets, multimaps, tables, bidirectional maps等 2.3 强大的集合工具类: 提供java.util.Collections中没有的集合工具 2.4 扩展工具类:让实现和扩展集合类变得更容易,比如创建Collection的装饰器,或实现迭代器 3. 缓存[Caches] Guava Cache:本地缓存实现,支持多种缓存过期策略 4. 函数式风格[Functional idioms] Guava的函数式支持可以显著简化代码,但请谨慎使用它 5. 并发[Concurrency] 强大而简单的抽象,让编写正确的并发代码更简单 5.1 ListenableFuture:完成后触发回调的Future 5.2 Service框架:抽象可开启和关闭的服务,帮助你维护服务的状态逻辑 6. 字符串处理[Strings] 非常有用的字符串工具,包括分割、连接、填充等操作 7. 原生类型[Primitives] 扩展 JDK 未提供的原生类型(如int、char)操作, 包括某些类型的无符号形式 8. 区间[Ranges] 可比较类型的区间API,包括连续和离散类型 9. I/O 简化I/O尤其是I/O流和文件的操作,针对Java5和6版本 10. 散列[Hash] 提供比Object.hashCode()更复杂的散列实现,并提供布鲁姆过滤器的实现 11. 事件总线[EventBus] 发布-订阅模式的组件通信,但组件不需要显式地注册到其他组件中 12. 数学运算[Math] 优化的、充分测试的数学工具类 13. 反射[Reflection] Guava 的 Java 反射机制工具类View Code
3.用现有基本方式实现常见操作
3.1 BigDecimal 的用法
list中BigDecimal 的求和用法
BigDecimal oneAmountAllTeam = combatTeamEntities.stream().map(CombatTeamEntity::getActivityAmountOne).reduce(BigDecimal::add).get();
BigDecimal 的比较函数 int a = bigdemical.compareTo(bigdemical2);
//a = -1,表示bigdemical小于bigdemical2;
//a = 0,表示bigdemical等于bigdemical2;
//a = 1,表示bigdemical大于bigdemical2;
3.2groupby 在java8中的学习
List<Product> prodList = Lists.newArrayList(prod1, prod2, prod3, prod4, prod5);
Map<String, List<Product>> prodMap = prodList.stream().collect(Collectors.groupingBy(item -> item.getCategory() + "_" + item.getName()));
3.3map中的遍历操作
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());
3.4
4.java8中新特性的学习 https://blog.csdn.net/u014231523/article/details/102535902
map的遍历查询:https://blog.csdn.net/tjcyjd/article/details/11111401