java8-new Features-(default and static methods for interfaces)

Source: Internet
Author: User

Java 8 extends the declaration of the interface with the two new concepts of the default method and the static method.

 Public Interface inte{    void  method ();      void  Defaultmethod () {        System.out.println ("Default");    }     Static  void Staticmehod () {        System.out.println ("Static");}    }

public static void Main (String[]args) {
Inte.staticmehod (); Static

}

Private Interfacedefaulable {    defaultString notrequired () {return"Default Implementation"; }        }         Private Static classDefaultableimplImplementsdefaulable {}Private Static classOverridableimplImplementsdefaulable {@Override PublicString notrequired () {return"Overridden Implementation"; }}

The Defaulable interface declares a default method notrequired () with the keyword default, and one of the Defaulable interface implementations Defaultableimpl implements the interface and keeps the default method intact. Another implementation of the Defaulable interface Overridableimpl overrides the default method in its own way.

java8-new Features-(default and static methods for interfaces)

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.