以下代码输出结果为:class Main { public static void main(String args[]) { System.out.println(fun()); } int fun() { return 20; }}
(A)20
(B)0
(C)1
(D)编译错误
参考答案
继续答题:下一题
更多java基础知识试题
- 1Linux系统是一个( )的操作系统
- 2以下代码输出结果为:class Main {public static void swap(Integer i, Integer j) { Integer temp = new Integer(i); i = j; j = temp; } public static void main(String[] args) { Integer i = new Integer(10); Integer j = new Integer(20); swap(i, j); System.out.println("i = " + i + ", j = " + j); }}
- 3Math.round(3.7) 输出结果为
- 4使用Java IO流实现对文本文件的读写过程中,需要处理下列( )异常
- 5哪个修饰符定义了方法与属性只能在同一个类中访问?