Advertisement
Josif_tepe

Untitled

Mar 26th, 2022
871
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.58 KB | None | 0 0
  1. public class Main {
  2.     public static void main(String[] args) throws InterruptedException{
  3.         Fabrika fabrika = new Fabrika(2);
  4.         Thread t1 = new Thread(new Runnable() {
  5.             @Override
  6.             public void run() {
  7.                 try {
  8.                     fabrika.produce("v1");
  9.                 }
  10.                 catch (InterruptedException e) {
  11.                     e.printStackTrace();
  12.                 }
  13.             }
  14.         });
  15.         Thread t3 = new Thread(new Runnable() {
  16.             @Override
  17.             public void run() {
  18.                 try {
  19.                     fabrika.produce("v2");
  20.                 }
  21.                 catch (InterruptedException e) {
  22.                     e.printStackTrace();
  23.                 }
  24.             }
  25.         });
  26.         Thread t2 = new Thread(new Runnable() {
  27.             @Override
  28.             public void run() {
  29.                 try {
  30.                     fabrika.consume();
  31.                 }
  32.                 catch (InterruptedException e) {
  33.                     e.printStackTrace();
  34.                 }
  35.             }
  36.         });
  37.         Thread t4 = new Thread(new Runnable() {
  38.             @Override
  39.             public void run() {
  40.                 try {
  41.                     fabrika.consume();
  42.                 }
  43.                 catch (InterruptedException e) {
  44.                     e.printStackTrace();
  45.                 }
  46.             }
  47.         });
  48.         t1.start();
  49.         t2.start();
  50.         t3.start();
  51.         t4.start();
  52.         t1.join();
  53.         t3.join();
  54.         t2.join();
  55.         t4.join();
  56.     }
  57. }
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement