Advertisement
gastaojunior

Java Thread - Programa

Jun 27th, 2011
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1. public class TwoThreadsDemo {
  2.     public static void main (String[] args) {
  3.         new SimpleThread("Jamaica").start();
  4.         new SimpleThread("Fiji").start();
  5.     }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement