7.2) Thread blocking: "public class TSleep extends Thread{
public static void main(String argv[]){
TSleep t = new TSleep();
t.start();
}
public void run(){
try{
while(true){
this.sleep(1000);
System.out.println('looping while');
}
}catch(InterruptedException ie){}
}
}
With the"
Wednesday, June 02, 2004
Nazeer Logs
Previous Posts
- Backing a ResourceBundle with Properties Files: "R...
- Dynamic Drive DHTML Scripts- Mini window Script: "...
- Moving Elements - Tutorials - HTMLCenter: "Moving ...
- cells: "Retrieves a collection of all cells in the...
- JavaScript: Insert and delete table rows in IE and...
- JavaScript: Insert and delete table rows in IE and...
- DHTMLShock - Intro to DHTML: "Intro to DHTML 9/13/...
- Dropdown Menus #2: "Dropdown Menus #2 This article...
- Modifying Items in a Dropdown List: "The HTML SELE...
- JavaScript Tutorials: "JavaScript Tutorials"
Subscribe to
Posts [Atom]

<< Home