Thread Construction - Example
public class SimpleThread extends Thread {
public SimpleThread(String str) {
super(str);
}
public void run() {
System.out.println("DONE! " + getName());
}
}
Previous slide
Next slide
Back to first slide
View graphic version