楼主: ReneeBK
1088 6

Java 8 in Action [推广有奖]

  • 1关注
  • 62粉丝

VIP

学术权威

14%

还不是VIP/贵宾

-

TA的文库  其他...

R资源总汇

Panel Data Analysis

Experimental Design

威望
1
论坛币
49407 个
通用积分
51.9304
学术水平
370 点
热心指数
273 点
信用等级
335 点
经验
57815 点
帖子
4006
精华
21
在线时间
582 小时
注册时间
2005-5-8
最后登录
2023-11-26

相似文件 换一批

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
  1. Book Description
  2. Java 8 in Action is a clearly written guide to the new features of Java 8. The book covers lambdas, streams, and functional-style programming. With Java 8's functional features you can now write more concise code in less time, and also automatically benefit from multicore architectures. It's time to dig in!

  3. Every new version of Java is important, but Java 8 is a game changer. Java 8 in Action is a clearly written guide to the new features of Java 8. It begins with a practical introduction to lambdas, using real-world Java code. Next, it covers the new Streams API and shows how you can use it to make collection-based code radically easier to understand and maintain. It also explains other major Java 8 features including default methods, Optional, CompletableFuture, and the new Date and Time API.
  4. Book Details
  5. Publisher:        Manning
  6. By:        Raoul-Gabriel Urma, Mario Fusco, Alan Mycroft
  7. ISBN:        978-1-61729-199-9
  8. Year:        2014
  9. Pages:        424
  10. Language:        English
  11. File size:        10.2 MB
  12. File format:        PDF
复制代码

本帖隐藏的内容

Java 8 in Action.pdf (9.75 MB, 需要: 5 个论坛币)




二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:Action Java ACT CTI TIO Java

本帖被以下文库推荐

沙发
ReneeBK 发表于 2016-5-8 20:02:25 |只看作者 |坛友微信交流群
  1. Before:

  2. Comparator<Apple> byWeight = new Comparator<Apple>() {
  3.     public int compare(Apple a1, Apple a2){
  4.         return a1.getWeight().compareTo(a2.getWeight());
  5.     }
  6. };
  7. After (with lambda expressions):

  8. Comparator<Apple> byWeight =
  9.     (Apple a1, Apple a2) -> a1.getWeight().compareTo(a2.getWeight());
复制代码

0.jpg

使用道具

藤椅
ReneeBK 发表于 2016-5-8 20:12:24 |只看作者 |坛友微信交流群
1.jpg

使用道具

板凳
ReneeBK 发表于 2016-5-8 20:19:41 |只看作者 |坛友微信交流群
Four-step process to apply the execute around pattern

1.jpg

使用道具

报纸
Nicolle 学生认证  发表于 2016-11-27 07:02:13 |只看作者 |坛友微信交流群
提示: 作者被禁止或删除 内容自动屏蔽

使用道具

地板
Nicolle 学生认证  发表于 2017-7-16 02:33:33 |只看作者 |坛友微信交流群
提示: 作者被禁止或删除 内容自动屏蔽

使用道具

7
Nicolle 学生认证  发表于 2017-7-16 02:34:22 |只看作者 |坛友微信交流群
提示: 作者被禁止或删除 内容自动屏蔽

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加JingGuanBbs
拉您进交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-5-3 17:26