應該如何查看代碼以發現其真實輸出?人們陷入的最常見的陷阱是什麼?是否有任何提示/技巧可以提供給剛接觸java編程的人?以下是我想要查找輸出的代碼示例。而不是插入日食。在一張紙上找到它的輸出可能是一種有效的方法。發現代碼示例輸出的最佳方法
謝謝
double valueOne = 20.0, valueTwo = 30.0;
if ((valueOne > valueTwo) || (valueOne >= 0.0)) {
valueOne -= 1.0;
System.out.println("valueOne: " + valueOne);
} else {
valueTwo += 2.0;
System.out.println("valueTwo: " + valueTwo);
}
String messageOne = "Hello";
if (messageOne.equals("HELLO")) {
System.out.println("Hello processed");
} else {
System.out.println("Hello ignored");
}
String messageTwo = new String("Hello");
if (messageOne.equals(messageTwo)){
System.out.println("Caseone");
}else {
System.out.println("CaseTwo");
}
if (messageOne == messageTwo) {
System.out.println("CaseThree");
} else {
System.out.println("CaseFour");
}
筆和紙。 –
我應該如何設置它? –
http://www.amazon.com/Pens-Refills-Writing-Correction-Supplies/b?ie=UTF8&node=1069820 and http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias %3Daps&field-keywords = paper&rh = i%3Aaps%2Ck%3Apaper –