描述 題目和答案來自於 "阿裡雲大學 知乎專欄" 題目 1. 現在有如下一段代碼 將產生哪種結果: A. Compilation will fail B. Compilation will succeed and the program will print“0” C. Compilation wi ...
描述
題目和答案來自於阿裡雲大學 - 知乎專欄
題目
現在有如下一段代碼
public class Test { public int aMethod() { static int i=0; i++; return i; } public static void main(String args[]) { Test test = new Test(); test.aMethod(); int j = test.aMethod(); System.out.println(j); } }
將產生哪種結果:
A. Compilation will fail
B. Compilation will succeed and the program will print“0”
C. Compilation will succeed and the program will print“1”
D. Compilation will succeed and the program will print“2”
如要在字元串s(內容為“welcome to mldn !! ”),中,發現字元't'的位置,應該使用下麵哪種方法?
A.
mid(2,s);
B.
charAt(2);
C.
s.indexOf('t');
D.
indexOf(s,'v');
編譯和運行下麵代碼可能會發生什麼?
class Base { private void amethod(int iBase) { System.out.println("Base.amethod"); } } class Over extends Base { public static void main(String args[]) { Over o = new Over(); int iBase = 0 ; o.amethod(iBase) ; } public void amethod(int iOver) { System.out.println("Over.amethod"); } }
A. Compile time error complaining that Base.amethod is private
B. Runntime error complaining that Base.amethod is private
C. Output of Base amethod
D. Output of Over.amethod
現在有如下一段程式
class super { String name ; public super(String name) { this.name = name ; } public void fun1() { System.out.println("this is class super !"+name); } } class sub extends super { public void fun1() { System.out.println("this is class sub !"+name); } } class Test { public static void main(String args[]) { super s = new sub(); } }
運行上面的程式可能會出現的結果?
A. this is class super !
B. this is class sub !
C. 編譯時出錯
D. 運行時出錯
現在有如下一段程式
class Happy { public static void main(String args[]) { float [][] f1 = {{1.2f,2.3f},{4.5f,5.6f}} ; Object oo = f1 ; f1[1] = oo ; System.out.println("Best Wishes "+f1[1]); } }
該程式會出現何種效果?
A. {4.5,5.6}
B. 4.5
C. compilation error in line NO.5
D. exception
在一個類文件中,導入包、類和打包是怎樣的排列順序?
A. package、import、class;
B. class、import、package
C. import、package、class
D. package、class、import
如果你試圖編譯並運行下列代碼時可能會列印輸出什麼?
int i = 9 ; switch(i) { default: System.out.println("default"); case 0 : System.out.println("zero"); break ; case 1 : System.out.println("one"); case 2 : System.out.println("two"); }
A. default
B. default , zero
C. error default clause not defined
D. no output displayed
當你編譯下列代碼可能會輸出什麼?
class Test { static int i ; public static void main(String args[]) { System.out.println(i); } }
A. Error Variable i may not have been initialized
B. null
C. 1
D. 0
下麵代碼會存在什麼問題?
public class MyClass { public static void main(String arguments[]) { amethod(arguments); } public void amethod(String[] arguments){ System.out.println(arguments); System.out.println(arguments[1]); } }
A. 錯誤,void amethod()不是static類型
B. 錯誤,main()方法不正確
C. 錯誤,數組必須導入參數
D. 方法amethod()必須用String類型描述
為Demo類的一個無形式參數無返回值的方法method書寫方法頭,使得使用類名Demo作為首碼就可以調用它,該方法頭的形式為?
A.
static void method( )
B.
public void method( )
C.
final void method( )
D.
abstract void method( )
答案
ACDCC ABDAA
個人解析
在方法體內聲明的變數是“局部變數”,而局部變數是不能用static修飾的,private、protected、public也是不能用的。
indexOf是String類的一個方法,作用是查找第一次出現參數的位置,沒有則返回-1。
無論amethod方法是不是private,結果都是執行子類的amethod方法。區別是,如果不是private,子類的amethod方法是重寫了父類的方法;如果是private,子類的amethod方法並沒有重寫父類的方法。
Java中,如果類里沒有寫構造方法,那麼會預設有一個無參的構造方法。但是一旦手動寫了構造方法,那麼預設的無參構造方法就沒有了。這道題是因為父類只有一個有參的構造方法,但是子類卻沒有,所以編譯出錯。
Java中的數組是對象,所以第四行沒有問題。而f1[1]需要的是一個數組並且是一維數組,所以第五行編譯出錯。
無
在default中進入,在case 0中因為break跳出。
基本數據類型都有相應的預設值,其中int是0,char為‘\u0000’,boolean為false。
靜態方法無法調用非靜態方法。
靜態方法可以用類名.方法名直接調用。