JAVA开发工程师笔试题(二十六)

时长:60分钟 总分:100分

219浏览 1人已完成答题

题型介绍
题型 单选题
数量 2
JAVA开发工程师笔试题(二十六)
1.
现有代码如下: public class Example { void topGo( ) { try { middleGo( ); } catch (Exception e) { System.out.println("catch"); } } void middleGo( ) throws Exception { go( ); System.out.println("late middle"); } void go( ) throws Exception { throw new Exception( ); } public static void main(String[] args) { Example example = new Example( ); example.topGo( ); } } 该代码的执行结果是?
问题详情




2.
给出以下代码,改程序的执行结果是? interface Base { int k = 0; } public class Example implements Base { public static void main(String[] args) { int i; Example exm = new Example( ); i = exm.k; i = Example.k; i = Base.k; System.out.println(i); } }
问题详情