Differences between Java multi-thread runnable and thread

Source: Internet
Author: User

The runnable interface is implemented in actual projects.

To use thread to implement multithreading, The extends Thread class is required. In Java, only one class can be extends, which limits the inheritance of classes.

Runnable is used to implement interfaces without affecting the original functions of the class, because a class in Java can implements many interfaces.

 

The thread does not use resource sharing, but runnable can. When using runnable to share resources, it mainly uses the following framework:

Class runtest implements runnable (){

Public void run (){

...........................

}

.....................

 

Public static void main (string [] ARGs ){

Runtest RT = new runtest ();

Thread T1 = new thread (RT );

Thread t2 = new thread (RT );

T1.start ();

T2.start ();

}

}

Because both threads use run in RT, resources are shared. If the Thread class is inherited, resources cannot be shared.

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.