b. More importantly, the methods in the interface can be modified with default and then add method bodies
2. Why can't we use the default method to override the equals, hashcode, and toString methods?
That is, the interface cannot provide a default implementation of any method of the Object class. If a class implements a method, that always takes precedence over the default implementation. Once all interface instances are subclasses of Object, all interface instances already have non-default implementations of equals/hashCode/toString. Therefore, a default version of these on the interface is useless and will not be compiled.
3. Functional interface
The core concept is functional interface. If an interface defines a single abstract method, then the interface becomes a functional interface. For example, java.lang.Runnable is a functional interface because it only defines one abstract method:
public abstract void run();
Copy after login
What is a functional interface? There are two situations: 1. The interface has only one abstract method, abstract modification 2 .The interface has only one abstract method, abstract modification. At the same time, it contains multiple default methods, because the default method is modified by default, not abstract.
At the same time, a new Annotation is introduced: @FunctionalInterface. You can put it in front of an interface to indicate that the interface is a functional interface. Adding an interface to it won't compile unless you manage to turn it into a functional interface. It's a bit like @Override, which declares an intention to use it to prevent you from using it incorrectly.
4.Lambdas
A very valuable property of functional interfaces is that they can be instantiated with lambdas. Here are some examples of lambdas:
On the left is a comma-separated input list of the specified type, and on the right is a code block with return:
(int x, int y) -> { return x + y; }
Copy after login
On the left is a comma-separated input list of the derived type , the right side is the return value:
(x, y) -> x + y
Copy after login
The left side is a single parameter of the derivation type, the right side is a return value:
x -> x * x
Copy after login
There is no input on the left side (official name: "burger arrow"), and it is returned on the right side A value:
() -> x
Copy after login
The left side is a single parameter of the deduced type, and the right side is a code block with no return value (return void):
x -> { System.out.println(x); }
Copy after login
Static method reference:
String::valueOf
Copy after login
Non Static method reference:
Object::toString
Copy after login
Inherited function reference:
x::toString
Copy after login
Constructor reference:
ArrayList::new
Copy after login
You can come up with some function reference formats that serve as shorthand for other lambda formats.
控制流程 (break, early return) -在上面的 forEach例子中,传统的继续方式有可能通过在lambda之内放置 "return;"来实现。但是,没有办法中断循环或者从lambda中通过包含方法的结果返回一个数值。例如:
final String secret = "foo"; boolean containsSecret(Iterable<String> values) {
values.forEach(s -> { if (secret.equals(s)) {
??? // want to end the loop and return true, but can't }});
}
Copy after login
Copy after login
进一步阅读关于这些问题的资料,看看这篇Brian Goetz写的说明:在 Block中响应“已验证例外”What are the new features of Java8?
控制流程 (break, early return) -在上面的 forEach例子中,传统的继续方式有可能通过在lambda之内放置 "return;"来实现。但是,没有办法中断循环或者从lambda中通过包含方法的结果返回一个数值。例如:
final String secret = "foo"; boolean containsSecret(Iterable<String> values) {
values.forEach(s -> { if (secret.equals(s)) {
??? // want to end the loop and return true, but can't }});
}
Ordering<String> order = Ordering.from((a, b) -> ...);
CacheLoader<String, String> loader = CacheLoader.from((key) -> ...);
Copy after login
Copy after login
要深入阅读,请参看由 Brian Goetz所做的说明: response to "Allow lambdas to implement abstract classes"。
What are the new features of Java8?
翻译于 4年前
2人顶
顶 翻译得不错哦!
java.util.function
Package summary: java.util.function
As an early proof of Comparator and Runnable, it has been defined in the JDK The interface happens to be compatible with lambdas expressions as a functional interface. In the same way you can define any functional interface or third-party library in your own code.
But there is a specific form of function interface, which is extensive and universal and did not exist in the previous JD card. A large number of interfaces have been added to the new java.util.function package. Here are some of them:
Function -T as input, returns R as output
Predicate -T as input, the returned boolean value as output
##Consumer -T as input, perform some action but no return value
Supplier - Without any input, return T
BinaryOperator -Two T as input, return one T as output, useful for "reduce" operation
These most primitive characteristics also exist. They are provided as int, long and double. For example:
IntConsumer - takes int as input, performs a certain action, and has no return value
There are some performance reasons here, mainly Interpretation avoids boxing and unboxing operations during input or output.
Waiting for PM Translated 4 years ago
2 People like
like Very good translation!
1
2
##3
>
##All translations in this article are for learning and communication purposes only. Please be sure to indicate the translator, source, and link to this article when reprinting
Our translation work complies with the CC agreement. If our work infringes upon your rights, please contact us in time
Comment (
85
)
The above is the detailed content of What are the new features of Java8?. For more information, please follow other related articles on the PHP Chinese website!
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Java8 calculates the date one year ago or one year later using the minus() method to calculate the date one year ago packagecom.shxt.demo02;importjava.time.LocalDate;importjava.time.temporal.ChronoUnit;publicclassDemo09{publicstaticvoidmain(String[]args ){LocalDatetoday=LocalDate.now();LocalDatepreviousYear=today.minus(1,ChronoUni
Everyone knows that there are many versions of win7 system, such as win7 ultimate version, win7 professional version, win7 home version, etc. Many users are entangled between the home version and the ultimate version, and don’t know which version to choose, so today I will Let me tell you about the differences between Win7 Family Meal and Win7 Ultimate. Let’s take a look. 1. Experience Different Home Basic Edition makes your daily operations faster and simpler, and allows you to access your most frequently used programs and documents faster and more conveniently. Home Premium gives you the best entertainment experience, making it easy to enjoy and share your favorite TV shows, photos, videos, and music. The Ultimate Edition integrates all the functions of each edition and has all the entertainment functions and professional features of Windows 7 Home Premium.
Understand the key features of SpringMVC: To master these important concepts, specific code examples are required. SpringMVC is a Java-based web application development framework that helps developers build flexible and scalable structures through the Model-View-Controller (MVC) architectural pattern. web application. Understanding and mastering the key features of SpringMVC will enable us to develop and manage our web applications more efficiently. This article will introduce some important concepts of SpringMVC
How to calculate the date one week later in Java8 This example will calculate the date one week later. The LocalDate date does not contain time information. Its plus() method is used to add days, weeks, and months. The ChronoUnit class declares these time units. Since LocalDate is also an immutable type, you must use variables to assign values after returning. packagecom.shxt.demo02;importjava.time.LocalDate;importjava.time.temporal.ChronoUnit;publicclassDemo08{publicstaticvoidmain(String[
The three characteristics of 5g are: 1. High speed; in practical applications, the speed of 5G network is more than 10 times that of 4G network. 2. Low latency; the latency of 5G network is about tens of milliseconds, which is faster than human reaction speed. 3. Broad connection; the emergence of 5G network, combined with other technologies, will create a new scene of the Internet of Everything.
There is no concept of a class in the traditional sense in Golang (Go language), but it provides a data type called a structure, through which object-oriented features similar to classes can be achieved. In this article, we'll explain how to use structures to implement object-oriented features and provide concrete code examples. Definition and use of structures First, let's take a look at the definition and use of structures. In Golang, structures can be defined through the type keyword and then used where needed. Structures can contain attributes
With the rapid development of the Internet, programming languages are constantly evolving and updating. Among them, Go language, as an open source programming language, has attracted much attention in recent years. The Go language is designed to be simple, efficient, safe, and easy to develop and deploy. It has the characteristics of high concurrency, fast compilation and memory safety, making it widely used in fields such as web development, cloud computing and big data. However, there are currently different versions of the Go language available. When choosing a suitable Go language version, we need to consider both requirements and features. head
C++ functions have the following types: simple functions, const functions, static functions, and virtual functions; features include: inline functions, default parameters, reference returns, and overloaded functions. For example, the calculateArea function uses π to calculate the area of a circle of a given radius and returns it as output.