» נושאי לימוד
» נושאי לימוד
יום שני 29 באפריל 2024
תוכנית Thread
דף ראשי  מתקדמים  Treads of control  סקירה כללית  תוכנית Thread גרסה להדפסה

 

/*File Thread02.java  Copyright 1997, R.G.Baldwin
Illustrates instantiation and running of threads by
extending the Thread class instead of implementing the
Runnable class as was the case in the program named
Thread01.java
Tested using JDK 1.1.3 under Win95.
The output is:
Thread[threadA,5,main]
Thread[threadB,5,main]
Thread[main,5,main]
**********************************************************/
class Thread02{
  static public void main(String[] args){
//Instantiate two new thread objects
    Thread myThreadA =
new Thread(new MyThread(),"threadA");
Thread myThreadB =
new Thread(new MyThread(),"threadB");
//Start them running
myThreadA.start();
myThreadB.start();
try{
//delay for one second
Thread.currentThread().sleep(1000);
}catch(InterruptedException e){}
    //Display info about the main thread
System.out.println(Thread.currentThread());
        }//end main
}//end class Thread02
//=======================================================//
class MyThread extends Thread{
public void run(){
//Display info about this particular thread
System.out.println(Thread.currentThread());
}//end run
}//end class MyThread

 11-10-03 / 11:14  נוצר ע"י רונית רייכמן  בתאריך 
 תוכנית rum - הקודםהבא - תוכנית לדוגמה 
תגובות הקוראים    תגובות  -  0
דרכונט
מהי מערכת הדרכונט?
אינך מחובר, להתחברות:
דוא"ל
ססמא
נושאי לימוד
חיפוש  |  לא פועל
משלנו  |  לא פועל
גולשים מקוונים: 7