Skip to content

Instantly share code, notes, and snippets.

@yujuwon
Created June 5, 2013 08:27
Show Gist options
  • Select an option

  • Save yujuwon/5712434 to your computer and use it in GitHub Desktop.

Select an option

Save yujuwon/5712434 to your computer and use it in GitHub Desktop.
public class TestThread1 implements Runnable{
// implement
public void run(){
System.out.println("Start Test1 Thread");
}
}
public class TestThread2 extends Thread{
// override
public void run(){
System.out.println("Start Test2 Thread");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment