java筆試題整理
1、運算子優先順序問題,下面程式碼的結果是多少?
-
public class Test {
-
public static void main(String[] args) {
-
int k = 0;
-
int ret = ++k + k++ + ++k + k;
-
// ret的值為多少
-
System.err.println(ret);
-
}
-
}
解答:主要考察++i和i++的區別。++在前則先自增再賦值運算,++在後則先賦值再自增運算。因此,結果為8。
2、運算子問題,下面程式碼分別輸出什麼?
-
public class Test {
-
public static void main(String[] args) {
-
int i1 = 10, i2 = 10;
-
System.err.println("i1 + i2 = " + i1 + i2);
-
System.err.println("i1 - i2 = " + i1 - i2);
-
System.err.println("i1 * i2 = " + i1 * i2);
-
System.err.println("i1 / i2 = " + i1 / i2);
-
}
-
}
解答:主要考察兩點,運算子的優先順序、字串與數字中的+為連線符號。第一條中,都是相加,則從前到後的順序運算,字串與數字相加,連線為一個字串,再與後面的數字相加,再次連線為字串,因此結果為“i1 + i2 = 1010”。第二條是錯誤的,字串無法與數字用減號連線。第三條、第四條中乘除的優先順序高,會先運算,而後再與字串連線,因此結果分別為:“i1 * i2 = 100”、“i1 * i2 = 1”。
3、下面程式碼的結果是什麼?
-
public class Test {
-
public void myMethod(String str) {
-
System.err.println("string");
-
}
-
public void myMethod(Object obj) {
-
System.err.println("object");
-
}
-
public static void main(String[] args) {
-
Test t = new Test();
-
t.myMethod(null);
-
}
-
}
解答:這道題考察過載方法引數具有繼承關係時的呼叫問題,還有對null的認識。如果是一般具有繼承關係的物件分別作為引數,看物件的引用,如:
-
class A {
-
}
-
class B extends A {
-
}
-
public class Test {
-
public static void main(String[] args) {
-
A b1 = new B();
-
B b2 = new B();
-
get(b1);// A
-
get(b2);// B
-
}
-
public static void get(A a) {
-
System.out.println("A");
-
}
-
public static void get(B a) {
-
System.out.println("B");
-
}
-
}
這道題中,Object是一切類的父類,具有繼承關係,那null是指向什麼呢?null是任何引用型別的初始值,String和Object的初始值都是null,但是null會優先匹配引用型別引數為String的方法,因此這道題答案是string。假設這道題中還有其他同是引用型別的過載方法呢?如:
-
public void myMethod(Integer obj) {
-
System.err.println("Integer");
-
}
如果是這樣的話,呼叫這個方法傳入引數null時會報錯,他不知道選哪個方法進行匹配呼叫了。
4、假設今天是9月8日,下面程式碼輸出什麼?
-
public class Test {
-
public static void main(String[] args) {
-
Date date = new Date();
-
System.err.println(date.getMonth() + " " + date.getDate());
-
}
-
}
解答:這道題考察的是日期中獲取的月份是從0開始的,因此會比我們日常的月份少1,這個題答案是8 8。
5、下面程式碼的輸出結果是什麼?
-
public class Test {
-
public static void main(String[] args) {
-
double val = 11.5;
-
System.err.println(Math.round(val));
-
System.err.println(Math.floor(val));
-
System.err.println(Math.ceil(val));
-
}
-
}
解答:這個是在考Math取整數的三種方法。round()是四捨五入取證,floor()是捨去小數位,ceil()是向上進一位。floor是地板ceil是天花板,一個在下,則捨去,一個在上,則向上進1。那是不是結果應該為12、11、12呢?還要考慮返回值型別,round()返回值型別為long長整型,floor()和ceil()返回值的是double型別,因此正確的答案應該是12、11.0、12.0。
6、程式設計輸出一個目錄下的所有目錄及檔名稱,目錄之間用tab。
-
public class Test {
-
public static void main(String[] args) {
-
new Test().read("D:/test", "");
-
}
-
public void read(String path, String tab) {
-
File file = new File(path);
-
File[] childFiles = file.listFiles();
-
for (int i = 0; childFiles != null && i < childFiles.length; i++) {
-
System.err.println(tab + childFiles[i].getName());
-
if (childFiles[i].isDirectory()) {
-
read(childFiles[i].getPath(), tab + "\t");
-
}
-
}
-
}
-
}
這個主要是考察IO部分知識點了。
7、從鍵盤讀入10個整數,然後從大到小輸出。
-
public class Test {
-
public static void main(String[] args) {
-
Scanner in = new Scanner(System.in);
-
// 注意這裡的陣列,不是int的
-
Integer[] arr = new Integer[10];
-
for (int i = 0; i < 10; i++) {
-
arr[i] = in.nextInt();
-
}
-
Arrays.sort(arr, new Comparator<Integer>() {
-
@Override
-
public int compare(Integer o1, Integer o2) {
-
if (o1 > o2) return -1;
-
if (o1 < o2) return 1;
-
return 0;
-
}
-
});
-
System.err.println(Arrays.toString(arr));
-
}
-
}
8、下面程式碼的結果是什麼?
-
public class Test extends Base {
-
public static void main(String[] args) {
-
Base b = new Test();
-
b.method();
-
Test t = new Test();
-
t.method();
-
}
-
@Override
-
public void method() {
-
System.err.println("test");
-
}
-
}
-
class Base {
-
public void method() throws InterruptedException {
-
System.err.println("base");
-
}
-
}
解答:兩次呼叫輸出都是test。多型的情況下,儘管是父類的引用,呼叫方法時,還是呼叫子類的方法。
9、以下程式碼的結果是什麼?
-
package test;
-
public class Test extends Base {
-
public static void main(String[] args) {
-
new Test().method();
-
}
-
public void method() {
-
System.err.println(super.getClass().getName());
-
System.err.println(this.getClass().getSuperclass().getName());
-
}
-
}
-
class Base {
-
}
解答:第一個輸出test.Test、第二個輸出test.Base。super很容易讓人以為也是呼叫了父類,實際上還是本類。具體原因也沒太搞懂,有懂的同學歡迎留言。
10、true or false?
-
public class Test {
-
public static void main(String[] args) {
-
String str1 = new String("abc");
-
String str2 = new String("abc");
-
System.err.println(str1.equals(str2));
-
StringBuffer sb1 = new StringBuffer("abc");
-
StringBuffer sb2 = new StringBuffer("abc");
-
System.err.println(sb1.equals(sb2));
-
}
-
}
解答:第一個true,第二個false。String重寫了Object中的equals方法,會將string拆分為字元陣列,逐個比較各個字元,程式碼如下:
-
public boolean equals(Object anObject) {
-
if (this == anObject) {
-
return true;
-
}
-
if (anObject instanceof String) {
-
String anotherString = (String)anObject;
-
int n = value.length;
-
if (n == anotherString.value.length) {
-
char v1[] = value;
-
char v2[] = anotherString.value;
-
int i = 0;
-
while (n-- != 0) {
-
if (v1[i] != v2[i])
-
return false;
-
i++;
-
}
-
return true;
-
}
-
}
-
return false;
-
}
Object中的equests方法如下:
-
public boolean equals(Object obj) {
-
return (this == obj);
-
}
11、輸出的結果是什麼?
-
public class Test {
-
public static void main(String[] args) {
-
System.err.println(new Test().method1());
-
System.err.println(new Test().method2());
-
}
-
public int method1() {
-
int x = 1;
-
try {
-
return x;
-
} finally {
-
++x;
-
}
-
}
-
public int method2() {
-
int x = 1;
-
try {
-
return x;
-
} finally {
-
return ++x;
-
}
-
}
-
}
解答:第一個返回1,第二個返回2。finally中的程式碼是一定會被執行的且在try中的程式碼執行完之後,因此若在其中return返回,會覆蓋掉try中的返回值。
如果這樣呢?
-
public class Test {
-
public static void main(String[] args) {
-
System.err.println(method());
-
}
-
public static boolean method() {
-
try {
-
return true;
-
} finally {
-
return false;
-
}
-
}
-
}
很明顯返回值應該為false。
12、方法m1和m2有區別嗎?
-
public class Test {
-
public static void main(String[] args) {
-
}
-
public synchronized void m1() {
-
}
-
public static synchronized void m2() {
-
}
-
}
解答:這裡考察的是同步方法的問題。synchronized修飾方法時鎖定的是呼叫該方法的物件。它並不能使呼叫該方法的多個物件在執行順序上互斥,靜態修飾符很有必要。因此當不適用靜態時,建立多個物件執行該方法,鎖都不一樣,還同步什麼呢,因此用static修飾後才能實現想要的效果。
13、true or false?
-
public class Test {
-
public static void main(String[] args) {
-
Integer i1 = 127;
-
Integer i2 = 127;
-
System.err.println(i1 == i2);
-
i1 = 128;
-
i2 = 128;
-
System.err.println(i1 == i2);
-
}
-
}
14、true or false?
-
public class Test {
-
public static void main(String[] args) {
-
String str1 = "a";
-
String str2 = "a";
-
String str3 = new String("a");
-
System.err.println(str1 == str2);
-
System.err.println(str1 == str3);
-
str3 = str3.intern();
-
System.err.println(str1 == str3);
-
}
-
}
15、true or false?
-
public class Test {
-
public static void main(String[] args) {
-
System.err.println(12 - 11.9 == 0.1);
-
}
-
}
解答:結果為false。這個題我只說下我的想法,12-11.9進行運算後會轉換成物件,不在是基本資料型別,因此在進行恆等判斷時,就會是false。
16、以下程式碼輸出是什麼?
-
public class Test {
-
public static void main(String[] args) {
-
BigInteger one = new BigInteger("1");
-
BigInteger two = new BigInteger("2");
-
BigInteger three = new BigInteger("3");
-
BigInteger sum = new BigInteger("0");
-
sum.add(one);
-
sum.add(two);
-
sum.add(three);
-
System.out.println(sum.toString());
-
}
-
}
解答:這個是對大整數的考察。結果是不是6呢?看起來好像沒毛病,其實不然。sum.add(one)與我們基本型別的sum+=one可不同,前者不會講結果賦值給sum物件,結果被賦值了這條語句的返回值。因此不管怎麼add,sum物件的值是沒有變化的,因此結果為0。
17、輸出的結果是什麼?
-
public class Test {
-
public static void main(String[] args) {
-
Set<String> set = new HashSet<String>();
-
set.add("one");
-
set.add("two");
-
set.add("three");
-
set.add("four");
-
set.add("five");
-
for (Iterator<String> it = set.iterator(); it.hasNext();) {
-
System.err.println(it.next());
-
}
-
}
-
}
解答:結果順序是four one two three five。有懂的同學歡迎留言評論。
18、如何迭代Map容器?
-
Map<String, String> map = new HashMap<>();
-
Set<Map.Entry<String, String>> entrySet = map.entrySet();
-
for(Map.Entry<String, String> entry : entrySet){
-
String key = entry.getKey();
-
String value = entry.getValue();
-
}
-
Set<String> keySet = map.keySet();
-
Iterator<String> it1 = keySet.iterator();
-
if(it1.hasNext())
-
System.out.println(it1.next());
-
Collection<String> values = map.values();
-
Iterator<String> it2 = values.iterator();
-
if(it2.hasNext())
-
System.out.println(it2.next());
19、以下程式碼輸出的結果
-
public class Test {
-
public static void main(String[] args) {
-
System.err.println(args.length);
-
}
-
}
-
/*
-
A. null B. 0 C. Test
-
D. Exception in thread "main" java.lang.NullPointerException
-
*/
解答:0.
20、下面為一個單例的實現程式碼,請指出程式碼中有幾個錯誤或不合理之處,並改正。
-
public class Test {
-
public Test instance = null;
-
public static Test getInstance() {
-
if (instance == null) {
-
instance = new Test();
-
return instance;
-
}
-
}
-
}