Java 中的十个 “ 单行代码编程 ” ( One Liner )

2017 年 9 月 30 日 ImportNew

(点击上方公众号,可快速关注)


来源:飒然Hang,

www.rowkey.me/blog/2017/09/09/java-oneliners/

如有好文章投稿,请点击 → 这里了解详情


本文列举了十个使用一行代码即可独立完成(不依赖其他代码)的业务逻辑,主要依赖的是Java8中的Lambda和Stream等新特性以及try-with-resources、JAXB等。


1. 对列表/数组中的每个元素都乘以2


// Range是半开区间

int[] ia = range(1, 10).map(i -> i * 2).toArray();

List<Integer> result = range(1, 10).map(i -> i * 2).boxed().collect(toList());


2. 计算集合/数组中的数字之和


range(1, 1000).sum();

range(1, 1000).reduce(0, Integer::sum);

Stream.iterate(0, i -> i + 1).limit(1000).reduce(0, Integer::sum);

IntStream.iterate(0, i -> i + 1).limit(1000).reduce(0, Integer::sum);


3. 验证字符串是否包含集合中的某一字符串


final List<String> keywords = Arrays.asList("brown", "fox", "dog", "pangram");

final String tweet = "The quick brown fox jumps over a lazy dog. #pangram http://www.rinkworks.com/words/pangrams.shtml";

 

keywords.stream().anyMatch(tweet::contains);

keywords.stream().reduce(false, (b, keyword) -> b || tweet.contains(keyword), (l, r) -> l || r);


4. 读取文件内容


原作者认为try with resources也是一种单行代码编程。


try (BufferedReader reader = new BufferedReader(new FileReader("data.txt"))) {

  String fileText = reader.lines().reduce("", String::concat);

}

 

try (BufferedReader reader = new BufferedReader(new FileReader("data.txt"))) {

  List<String> fileLines = reader.lines().collect(toCollection(LinkedList<String>::new));

}

 

try (Stream<String> lines = Files.lines(new File("data.txt").toPath(), Charset.defaultCharset())) {

  List<String> fileLines = lines.collect(toCollection(LinkedList<String>::new));

}


5. 输出歌曲《Happy Birthday to You!》 – 根据集合中不同的元素输出不同的字符串


range(1, 5).boxed().map(i -> { out.print("Happy Birthday "); if (i == 3) return "dear NAME"; else return "to You"; }).forEach(out::println);


6. 过滤并分组集合中的数字


Map<String, List<Integer>> result = Stream.of(49, 58, 76, 82, 88, 90).collect(groupingBy(forPredicate(i -> i > 60, "passed", "failed")));


7. 获取并解析xml协议的Web Service


FeedType feed = JAXB.unmarshal(new URL("http://search.twitter.com/search.atom?&q=java8"), FeedType.class);

JAXB.marshal(feed, System.out);


8. 获得集合中最小/最大的数字


int min = Stream.of(14, 35, -7, 46, 98).reduce(Integer::min).get();

min = Stream.of(14, 35, -7, 46, 98).min(Integer::compare).get();

min = Stream.of(14, 35, -7, 46, 98).mapToInt(Integer::new).min();

 

int max = Stream.of(14, 35, -7, 46, 98).reduce(Integer::max).get();

max = Stream.of(14, 35, -7, 46, 98).max(Integer::compare).get();

max = Stream.of(14, 35, -7, 46, 98).mapToInt(Integer::new).max();


9. 并行处理


long result = dataList.parallelStream().mapToInt(line -> processItem(line)).sum();


10. 集合上的各种查询(LINQ in Java)


List<Album> albums = Arrays.asList(unapologetic, tailgates, red);

 

//筛选出至少有一个track评级4分以上的专辑,并按照名称排序后打印出来。

albums.stream()

  .filter(a -> a.tracks.stream().anyMatch(t -> (t.rating >= 4)))

  .sorted(comparing(album -> album.name))

  .forEach(album -> System.out.println(album.name));

 

//合并所有专辑的track

List<Track> allTracks = albums.stream()

  .flatMap(album -> album.tracks.stream())

  .collect(toList());

 

//根据track的评分对所有track分组

Map<Integer, List<Track>> tracksByRating = allTracks.stream()

  .collect(groupingBy(Track::getRating));


补充 by 飒然Hang: 上述的单行代码编程确实能够减少代码的字符数,也经常能够给人以高大上的感觉,但是在Java编程中字符其实是非常廉价的,尤其是现在诸如Intellij等IDE已经具有自动补充/生成代码、重构等智能化功能。如果仅仅是为了减少字符的数量,那么没必要刻意去追求单行代码编程。让你的代码易于阅读才是最关键的。


看完本文有收获?请转发分享给更多人

关注「ImportNew」,提升Java技能

登录查看更多
0

相关内容

一份简明有趣的Python学习教程,42页pdf
专知会员服务
76+阅读 · 2020年6月22日
【普林斯顿大学-微软】加权元学习,Weighted Meta-Learning
专知会员服务
39+阅读 · 2020年3月25日
《代码整洁之道》:5大基本要点
专知会员服务
49+阅读 · 2020年3月3日
抢鲜看!13篇CVPR2020论文链接/开源代码/解读
专知会员服务
49+阅读 · 2020年2月26日
Transformer文本分类代码
专知会员服务
116+阅读 · 2020年2月3日
机器学习入门的经验与建议
专知会员服务
92+阅读 · 2019年10月10日
用 Python 开发 Excel 宏脚本的神器
私募工场
26+阅读 · 2019年9月8日
手把手教你用Python实现“坦克大战”,附详细代码!
机器学习算法与Python学习
11+阅读 · 2019年6月8日
[机器学习] 用KNN识别MNIST手写字符实战
机器学习和数学
4+阅读 · 2018年5月13日
干货 | Python 爬虫的工具列表大全
机器学习算法与Python学习
10+阅读 · 2018年4月13日
[DLdigest-8] 每日一道算法
深度学习每日摘要
4+阅读 · 2017年11月2日
Python3爬虫之入门和正则表达式
全球人工智能
7+阅读 · 2017年10月9日
[编程经验] CVPR2017论文全集下载代码脚本分享
机器学习和数学
9+阅读 · 2017年7月27日
The Matrix Calculus You Need For Deep Learning
Arxiv
12+阅读 · 2018年7月2日
Bidirectional Attention for SQL Generation
Arxiv
4+阅读 · 2018年6月21日
Arxiv
6+阅读 · 2018年4月21日
Arxiv
3+阅读 · 2018年4月3日
Arxiv
10+阅读 · 2017年12月29日
VIP会员
相关VIP内容
相关资讯
用 Python 开发 Excel 宏脚本的神器
私募工场
26+阅读 · 2019年9月8日
手把手教你用Python实现“坦克大战”,附详细代码!
机器学习算法与Python学习
11+阅读 · 2019年6月8日
[机器学习] 用KNN识别MNIST手写字符实战
机器学习和数学
4+阅读 · 2018年5月13日
干货 | Python 爬虫的工具列表大全
机器学习算法与Python学习
10+阅读 · 2018年4月13日
[DLdigest-8] 每日一道算法
深度学习每日摘要
4+阅读 · 2017年11月2日
Python3爬虫之入门和正则表达式
全球人工智能
7+阅读 · 2017年10月9日
[编程经验] CVPR2017论文全集下载代码脚本分享
机器学习和数学
9+阅读 · 2017年7月27日
Top
微信扫码咨询专知VIP会员