内容简介:Guava 23.4 已发布,Guava 是 Google 的一个开源项目,包含许多 Google 核心的 Java 常用库,如:集合 [collections] 、缓存 [caching] 、原生类型支持 [primitives support] 、并发库 [concurrency libraries] ...
Guava 23.4 已发布,Guava 是 Google 的一个开源项目,包含许多 Google 核心的 Java 常用库,如:集合 [collections] 、缓存 [caching] 、原生类型支持 [primitives support] 、并发库 [concurrency libraries] 、通用注解 [common annotations] 、字符串处理 [string processing] 、I/O 等等。
Maven
<dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>23.4-jre</version> <!-- or, for Android: --> <version>23.4-android</version> </dependency>
Javadoc
JDiff
更新日志:
net
: AddedReferrer-Policy
toHttpHeaders
, along with possible values for that header inReferrerPolicyValues
. (19b4d97)util.concurrent
: Adjusted the interruption behavior ofMoreExecutors.sequentialExecutor()
to run tasks without aThread
interrupt marked (previously, interrupts leaked between tasks). If theThread
was interrupted when theExecutor
received it or during execution of its tasks, the thread will be re-interrupted before being yielded. Expanded the documentation ofMoreExecutors.sequentialExecutor()
to cover interruption and rejected execution behavior in detail. (40564c7)
下载地址:
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- [译] Git 版本控制的核心概念
- Guava 23.3 版本发布,Google 的 Java 核心库
- Guava 23.5 版本发布,Google 的 Java 核心库
- 谷歌的 Java 核心工具库 Guava 发布 24.0 正式版本
- ThinkPHP 6.0 RC2 版本发布——架构升级、精简核心
- ThinkPHP 6.0 RC2 版本发布——架构升级、精简核心
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
学习JavaScript数据结构与算法(第2版)
[巴西] Loiane Groner / 邓 钢、孙晓博、吴 双、陈 迪、袁 源 / 人民邮电出版社 / 2017-9 / 49.00元
本书首先介绍了JavaScript 语言的基础知识以及ES6 和ES7 中引入的新功能,接下来讨论了数组、栈、队列、链表、集合、字典、散列表、树、图等数据结构,之后探讨了各种排序和搜索算法,包括冒泡排序、选择排序、插入排序、归并排序、快速排序、堆排序、计数排序、桶排序、基数排序、顺序搜索、二分搜索,然后介绍了动态规划和贪心算法等常用的高级算法以及函数式编程,最后还介绍了如何计算算法的复杂度。一起来看看 《学习JavaScript数据结构与算法(第2版)》 这本书的介绍吧!