@aye_balbec

Не могу исправить ошибку Exception Exception InterruptedException is not compatible with throws clause in Runnable.run().Можете, пожалуйста объяснить?

Когда хотел создать поток с методом Thread.sleep() поставил в сигнатуре метода main и run throws InterruptedException и ввшла ошибка Exception InterruptedException is not compatible with throws clause in Runnable.run(), вот весь код:
class new_thread implements
Runnable{
public void run()throws
InterruptedException{
Thread.sleep(433);
}
}
public class Mainn {
public static void main(String [] args)throws InterruptedException{
Thread thread = new Thread(new new_thread());
thread.start();
Thread.sleep(33);
}
}
  • Вопрос задан
  • 70 просмотров
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы
25 нояб. 2024, в 18:39
30000 руб./за проект
25 нояб. 2024, в 18:35
30000 руб./за проект
25 нояб. 2024, в 18:33
10000 руб./за проект