Advertisement
recipe

Thread Example Java

Oct 6th, 2015
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.12 KB | None | 0 0
  1. Thread t = new Thread(
  2.     new Runnable() {
  3.         @Override
  4.         public void run() {
  5.             //Code here
  6.         }
  7.     }
  8. );
  9. t.start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement