Не могу исправить ошибку 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);
}
}