• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PacktPublishing/Java-Coding-Problems: Java Coding Problems, published by Packt

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

PacktPublishing/Java-Coding-Problems

开源软件地址:

https://github.com/PacktPublishing/Java-Coding-Problems

开源编程语言:

Java 100.0%

开源软件介绍:

Java Coding Problems

Java Coding Problems

This is the code repository for Java Coding Problems , published by Packt.

Improve your Java Programming skills by solving real-world coding challenges

What is this book about?

  • Adopt the latest JDK 8 - JDK 13 features in your applications
  • Solve cutting-edge problems relating to collections and data structures
  • Get to grips with functional-style programming using lambdas
  • Perform asynchronous communication and parallel data processing
  • Solve strings and number problems using the latest Java APIs
  • Become familiar with different aspects of object immutability in Java
  • Implement the correct practices and clean code techniques

This book covers the following exciting features:

If you feel this book is for you, get your copy today!

https://www.packtpub.com/

Instructions and Navigations

All of the code is organized into folders. For example, Chapter02.

The code will look like the following:

public Map<Character, Integer> countDuplicateCharacters(String str) {

   Map<Character, Integer> result = new HashMap<>();
 
   // or use for(char ch: str.toCharArray()) { ... }
   for (int i = 0; i<str.length(); i++) {
      char ch = str.charAt(i);
      result.compute(ch, (k, v) -> (v == null) ? 1 : ++v);
   }
   
   return result;
}

Following is what you need for this book: If you are a Java developer who wants to level-up by solving real-world problems, then this book is for you. Working knowledge of Java is required to get the most out of this book.

With the following software and hardware list you can run all code files present in the book (Chapter 1-13).

Software and Hardware List

Chapter Software required OS required
1-13 JDK Windows, Mac OS X, and Linux (Any)

We also provide a PDF file that has color images of the screenshots/diagrams used in this book. Click here to download it.

Related products

Get to Know the Author

Anghel Leonard is a Chief Technology Strategist with more than 20 years of experience in the Java ecosystem. In his daily work, he is focused on architecting and developing Java distributed applications that empower robust architectures, clean code, and high performance. He is also passionate about coaching, mentoring, and technical leadership.

He is the author of several books, videos, and dozens of articles related to Java technologies.

Suggestions and Feedback

Click here if you have any feedback or suggestions.




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
square/moshi: A modern JSON library for Kotlin and Java.发布时间:2022-06-23
下一篇:
kennycason/kumo: Kumo - Java Word Cloud发布时间:2022-06-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap