Advertisement
angrymasteryoda

bucky.class

Jan 29th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1.  
  2. public class bucky {
  3.     public static void main(String[] args){
  4.        
  5.         Thread t1 = new Thread(new apple("one"));
  6.         Thread t2 = new Thread(new apple("two"));
  7.         Thread t3 = new Thread(new apple("three"));
  8.         t1.start();
  9.         t2.start();
  10.         t3.start();
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement