What lines will the compilation error occur in:

class MyException1 extends Exception { }             // 1
class MyException2 extends RuntimeException { }      // 2
class A {
    void m1() { throw new MyException1(); }          // 3
    void m2() { throw new MyException2(); }          // 4
}
Explanation
MyException1 exception is checked, therefore it has to be handled by an m1() method.

Следи за CodeGalaxy

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

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