Advertisement
Alkrag

Untitled

Jan 29th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public class Main {
  2.  
  3. public static void main(String[] args) {
  4.  
  5. Pojemnik k = new Pojemnik();
  6.  
  7. Thread t1 = new Towar(k, 1);
  8. Thread t2 = new Przelicznik(k, 1);
  9.  
  10. t1.start();
  11. t2.start();
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement