Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save damithadayananda/df5d86fa845a63bac494614acc79aa65 to your computer and use it in GitHub Desktop.
Save damithadayananda/df5d86fa845a63bac494614acc79aa65 to your computer and use it in GitHub Desktop.
public class annonymousClassUsingThreadClass {
public annonymousClassUsingThreadClass() {
Thread t = new Thread(){
public void run(){
System.out.println("anonymous thread");
}
};
t.start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment