Advertisement
sergAccount

Untitled

Mar 14th, 2021
736
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.23 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package com.mycompany.app22;
  7.  
  8. public class Main {
  9.    
  10.     public static void main(String[] args) {
  11.         // MyPrintTask
  12.         int n = 2;
  13.         Thread[] array = new Thread[n];
  14.         MyPrintTask[] tasks = new MyPrintTask[n];
  15.         // создаем задачу, создаем поток и запускаем на выполнение
  16.         for (int i = 0; i < n; i++) {
  17.             int m = 3;            
  18.             tasks[i] = new MyPrintTask(m);
  19.             array[i] = new Thread(tasks[i]);
  20.             array[i].start();
  21.         }
  22.         // ждем выполнения всех задач (join или isAlive класс isAlive())
  23.         for (int i = 0; i < array.length; i++) {
  24.             try{
  25.                 array[i].join();            
  26.             }catch(Exception e){
  27.                 e.printStackTrace();
  28.             }
  29.         }
  30.         // fori
  31.         for (int i = 0; i < tasks.length; i++) {
  32.             System.out.println("tasks[i].totalTime=" + tasks[i].getExecutionTime());            
  33.         }
  34.     }    
  35. }
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement