sign in • sign up
web | myLot | discussions | tasks | blogs | news | photos
homeinterestsdiscussionstasksblogsnewsmessages friendsphotosearningsmyLotquizzes

What is the target object in java thread? email this discussion to a friend?

zxh606110 (21)3 years ago

i'm learning java Thread nowdays,and now i met some questions,such as the target object,i can't understand it well,is there any programmer can explain for me in detial?Thanks!

 
 
java
sponsors
Call Java from Uniface Applications
Using UD5/JNI you can call Java and EJB methods from Uniface.
march-hare.com

Art in Fredericksburg, VA
Galleries, Museums, and the Performing Arts. Request a free guide.
www.VisitFred.com

Kimpton Hotels And
Find top-rated Restaurants near you Try Citysearch® now
Washingtondc.Citysearch.com

User has not selected a best response.
tags:  target object in java thread
 
1. luxram2330 (65)   ranked 6 out of 130 in java   3 years ago

An Object that wants to serve as the target of a Thread can declare that it has an appropriate executable method by implementing the java.lang.Runnable interface. Runnable defines a single, general-purpose method:

public interface Runnable{
abstract public void run();
}

Every thread begins its life by executing a run() method in a particular object. run() is a rather mundane method that can hold an arbitrary body of code. It is public, takes no arguments, has no return value, and is not allowed to throw any exceptions.

Any class can contain an appropriate run() method, simply by declaring that it implements the Runnable interface. An instance of this class is then a runnable object that can serve as the target of a new thread. In this way, we can effectively run a method in any object we want.

Call Java from Uniface Applications Using UD5/JNI you can call Java and EJB methods from Uniface. march-hare.com
 
sponsors
Back in Action Spinecare& Rehab
Chiropractic - Spinal Decompression - Rehabilitation - Nutrition.
www.virginiachiro.com

The Quality of Life Group
Looking For The Quality of Life Group In Your Area. Call Now.
TheQualityOfLifeGroup.Local.com

car dealer used warranty at Yahoo!
Find Washington, DC area used Honda car dealers and get a free quote.
www.promotions.yahoo.com/honda

sponsors
Back in Action Spinecare & Rehab
Chiropractic - Spinal Decompression - Rehabilitation - Nutrition.
www.virginiachiro.com
return to mylot
We are loading a word from our sponsors. No thanks, cancel loading.