Which is the result of compiling and running the following code:

public class MyThread implements Runnable {	
    public void run() {
        System.out.println("hello");
        try {
            Thread.sleep(Math.round(200 * Math.random()));
        } catch (InterruptedException e) { }
        System.out.println("world");
    }
	
    public static void main(String[] args) {
        new Thread(new MyThread()).run();
        new Thread(new MyThread()).run();
    }
}

Следи за CodeGalaxy

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

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