前幾天在知乎裏看到一份這樣的題,當時只是隨便作了一下,對了一下答案。昨天又有了一份進階的題,裏面有些仍是須要記錄一下,因而就從這個入門的題開始。
題目和答案來自阿里雲大學 - 知乎專欄html
如今假設有以下程序
java class Happy { public static void main(String args[]) { int i = 1 ; int j = i++ ; if((i==(++j))&&((i++)==j)) { i += j ; } System.out.println("i = "+i); } }
運行完上面代碼以後輸出i
的值是多少?java
A. 4app
B. 5阿里雲
C. 3code
D. 6htm
下面的數據聲明及賦值哪個是沒有錯誤的?字符串
A. float f = 1.3;
get
B. char c = "a"
it
C. byte b = 257
編譯
D. int i = 10
編譯Java源程序文件產生的字節碼文件的擴展名爲?
A. java
B. class
C. html
D. exe
如今假設有以下程序:
java public class Demo { public static void main(String args[]) { boolean flag = 10%2 == 1 && 10 / 3 == 0 && 1 / 0 == 0 ; System.out.println(flag ? "aliyunedu" : "yootk") ; } }
以上程序的最終執行結果是什麼?
A. aliyunedu
B. yootk
C. true
D. 程序出錯
如今假設有以下程序:
java public class Demo { public static void main(String args[]) { int x = 10 ; double y = 20.2 ; long z = 10L; String str = "" + x + y * z ; System.out.println(str) ; } }
以上程序的最終執行結果是什麼?
A. 10202.0
B. 0212.0
C. 302.0
D. 1020.210
如今假設有以下程序:
java public class Demo { public static void main(String args[]) { String str = "" ; for (int x = 0 ; x < 5 ; x ++) { str += x ; } System.out.println(str) ; } }
以上程序最終的執行結果是什麼?
A. 01234
B. 10
C. 14
D. 25
如今假設有以下程序:
java public class Demo { public static void main(String args[]) { System.out.println(inc(10) + inc(8) + inc(-10)) ; } public static int inc(int temp) { if (temp > 0) { return temp * 2 ; } return -1 ; } }
以上程序的最終執行結果是什麼?
A. 35
B. 8
C. 28
D. 12
如今假設有以下程序:
java public class Demo { public static void main(String args[]) { char c = 'A' ; int num = 10 ; switch(c) { case 'B' : num ++ ; case 'A' : num ++ ; case 'Y' : num ++ ; break ; default : num -- ; } System.out.println(num) ; } }
以上程序的最終執行結果是什麼?
A. 11
B. 13
C. 12
D. 10
如今假設有以下程序:
java public class Demo { public static void main(String args[]) { int sum = 0 ; for (int x = 1 ; x < 10 ; x ++) { sum += x ; if (x % 3 == 0) { continue ; } } System.out.println(sum) ; } }
以上程序的最終執行結果是什麼?
A. 6
B. 0
C. 程序錯誤,死循環
D. 45
如今假設有以下程序:
public class Demo { public static void main(String args[]) { int sum = 0 ; for (int x = 0 ; x < 10 ; x ++) { sum += x ; if (x % 3 == 0) { break ; } } System.out.println(sum) ; } }
以上程序的最終執行結果是什麼?
A. 6
B. 0
C. 程序錯誤,死循環
D. 45
BDBBA AACDB
主要考驗i++
和++i
的區別,只要記住「先++,先自增;後++,後自增」,這道題就只剩下考驗細心了。
```java
class Happy {
public static void main(String[] args) {
int i = 1;
int j = i++; // i = 2, j = 1
if ((i == (++j)) && ((i++) == j)) { // 第一個判斷:j先自增1變爲2後與i比較 // 第二個判斷:i先與j比較後再自增1, // if內爲true,i = 3, j = 2 i += j; // i = 5, j = 2 } System.out.println("i = " + i); }
}
```
float f = 1.3;
1.3
默認是double類型,java中基本數據類型由高級向低級轉換須要強轉。
float f = 1.3f;
double f = 1.3;
float f =(float) 1.3;
double f = 1.3f;
char c = "a"
char c = 'a';
String c = "a";
byte b = 257
int b = 257;
byte b = 57;
int i = 10
無
public class Demo { public static void main(String args[]) { boolean flag = 10 % 2 == 1 && 10 / 3 == 0 && 1 / 0 == 0 ; // 10對2取餘爲0,故flag爲false System.out.println(flag ? "aliyunedu" : "yootk") ; } }
&&
(短路與)一旦前面的條件爲false,就會跳事後面的條件。
X = 條件 ? A : B
爲三元表達式,與
java if (條件) { X = A; } else { X = B; }
意思相同
public class Demo { public static void main(String args[]) { int x = 10 ; double y = 20.2 ; long z = 10L; String str = "" + x + y * z ; System.out.println(str) ; } }
*
的優先度高於+
,故優先計算乘法,隨後從左往右依次進行+
。當有字符串參與+
運算時,加法變爲字符串拼接,結果爲字符串。故最後爲字符串"10"
和202.0
的拼接。
見上
public class Demo { public static void main(String args[]) { System.out.println(inc(10) + inc(8) + inc(-10)) ; // 20 + 16 - 1 } public static int inc(int temp) { if (temp > 0) { return temp * 2 ; } return -1 ; } }
若是爲正數,返回參數的2倍值;若是不是正數,返回-1。結果爲20 + 16 + (-1)
public class Demo { public static void main(String args[]) { char c = 'A' ; int num = 10 ; switch(c) { case 'B' : num ++ ; case 'A' : // 匹配成功,開始執行 num ++ ; // num = 11 case 'Y' : num ++ ; // num = 12 break ; // 因break跳出switch default : num -- ; } System.out.println(num) ; } }
switch-case語句塊中break的重要性
public class Demo { public static void main(String args[]) { int sum = 0 ; for (int x = 1 ; x < 10 ; x ++) { sum += x ; if (x % 3 == 0) { continue ; } } System.out.println(sum) ; } }
感受這道題sum += x
的位置可能寫錯了,應該在if的後面,要麼就只是單純的和下一道題做對比。如今這段代碼裏if的用處幾乎沒有,結果和沒有if時是同樣的,都是1+2+…+9=45。
public class Demo { public static void main(String args[]) { int sum = 0 ; for (int x = 0 ; x < 10 ; x ++) { sum += x ; if (x % 3 == 0) { break ; } } System.out.println(sum) ; } }
和上一題相似,不過i的初始值變成了0,if裏面的continue變成了break。因爲0對3取餘爲0,因此直接跳出循環,輸出sum的值0。