What will happen after the following code is compiled and executed?

public class Main implements Runnable {
    public void run() {
        System.out.println("Hello");
        Thread.currentThread().sleep(100);        
    }        
    public static void main(String... args) throws InterruptedException {
        new Thread(new Main()).start();
    }
}

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Продолжайте изучать
тесты по Java
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты