Runnable networktask = new Runnable () {}; What is the meaning

Source: Internet
Author: User

The anonymous inner class (Anonymous Inner Class), when the instance is created, gives the definition of the class, all of which are done in an expression.
Java Code ?
1 2 3 4 Runnable rn = new Runnable () { public void Run () { } };

equivalent to:
Java Code ?
1 2 3 4 5 class Anomymous implements Runnable { public void Run () { } } Runnable rn = new anomymous ();

you can see that the former is more concise. (Note that the last semicolon of the former cannot be omitted, the compiler regards the whole as a statement)
However, an anonymous inner class is limited to an inner class that is instantiated only once, which is usually used if the inner class needs to be instantiated more than once.
In addition, anonymous internal classes either inherit a parent class, or implement an interface, not both, and implement interfaces without implementing multiple interfaces

Runnable networktask = new Runnable () {}; What is the meaning

Related Article

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.