Java8 lambda expression

Source: Internet
Author: User

There is only one method of interface, for a short statement but to implement this interface, to write more than four or five lines of useless code, too much trouble. So you have to have lambda.

No parameter ()-println ("Do Something")

There is one parameter (int x), println (x);

There are multiple parameters (string A, string b), println (A + B);

The type (A, b), println (A + B) can also be omitted when the type can be deduced by the compiler;

A parameter can be omitted not only the type but also the parentheses, such as X, println (x); If you have a type, you cannot omit the parentheses

The left side of the arrow is the formal parameter declaration of the original interface method, and the right is the implementation of the method body. If you implement more than one sentence, you can wrap it in curly braces.

Java8 lambda expression

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.