/
alexShibanov
/
556677
Обзор
Документация
Войти
/
alexShibanov
/
556677
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Multithreading.java
17 строк
429 B
Yachika9925
Create Multithreading.java
28 окт 2023, 05:14
Не верифицирован
28 окт 2023, 05:14
eec5539
Код
Авторство
О чём код?
class MyThread extends Thread { public void run() { for (int i = 1; i <= 5; i++) { System.out.println("Thread " + Thread.currentThread().getId() + " - Count " + i); } } } public class MultiThreadDemo { public static void main(String[] args) { MyThread thread1 = new MyThread(); MyThread thread2 = new MyThread(); thread1.start(); thread2.start(); } }