public class ThreadTest implements Runnable{
public static void main(String[] args) {
ThreadTest t=new ThreadTest();
}
public ThreadTest(){
new Thread(t).start();
}
public void run() {
try {
Thread.sleep(300);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("I Can Start MySelf");
}
}