Hướng dẫn lập trình Java 8 trên Eclipse Để lập trình trên Java 8 trên Eclipse, các bạn cần làm 1 số việc như sau: Download JDK 8 Download Eclipse version suports Java 8 Tạo 1 project và test Trước tiên, các bạn vào trang chủ Oracle để download bộ JDK mới nhất về và … Continue reading Hướng dẫn lập trình Java 8 trên Eclipse
Tag: Java 8
Java 8 explained: Default Methods
In a previous post, we looked into lambdas in Java 8 which proved to be a very popular topic. Now we continue our peek into new Java 8 features by continuing with default methods. Those are closely related to lambdas, which could be the main theme of Java 8. In this article, we’ll take a look at what default methods … Continue reading Java 8 explained: Default Methods
Java 8: The First Taste of Lambdas
Project Lambda is the major theme in the upcoming Java 8 and probably the most awaited one among Java developers. There’s one interesting feature that is being added to Java along with lambdas – the defender methods. In this blog post my intention is to look under the covers – to see how lambdas are represented … Continue reading Java 8: The First Taste of Lambdas
Deep dive into Optional class API in Java 8
We all as Java programmers been through the situation where in we invoke a method to get some value and then instead of directly invoking some methods on the return value, we first have to check that the return value is not null and then invoke the methods on the return value. This has been … Continue reading Deep dive into Optional class API in Java 8