Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class MyRunnable implements Runnable {
- public void run(){
- System.out.println("MyRunnable running");
- }
- }
- //thread
- Thread thread = new Thread(new MyRunnable());
- thread.start();
Advertisement
Add Comment
Please, Sign In to add comment