public class T extends Thread
{
public void run() {
try {
System.out.println("thread execute");
} catch(Exception e) {
System.out.println("Exception");
}
}
public static void main (String[] args) {
T tr = new T();
tr.start();
}
}
/*
run:
thread execute
*/