Guava 是一个 Google 的基于java1.6的类库集合的扩展项目,包括
- collections
- caching
- primitives support
- concurrency libraries
- common annotations
- string processing
- I/O
等等。
项目相关信息
源码包的简单说明
com.google.common.annotations普通注解类型。com.google.common.base基本工具类库和接口。com.google.common.cache缓存工具包,非常简单易用且功能强大的JVM内缓存。com.google.common.collect带泛型的集合接口扩展和实现,以及工具类,这里你会发现很多好玩的集合。com.google.common.eventbus发布订阅风格的事件总线。com.google.common.hash哈希工具包。com.google.common.ioI/O工具包。com.google.common.math原始算术类型和超大数的运算工具包。com.google.common.net网络工具包。com.google.common.primitives八种原始类型和无符号类型的静态工具包。com.google.common.reflect反射工具包。com.google.common.util.concurrent多线程工具包。