20161219問題解析請點擊今日問題下方的“【Java每日一題】20161220”查看(問題解析在公眾號首發(fā)源梭,公眾號ID:weknow619)
package Dec2016;
public class Ques1220 {
public static void main(String[] args) {
Integer num1 = new Integer(100);
Integer num2 = new Integer(100);
compare(num1, num2);
}
public static void compare(Integer a, Integer b){
System.out.println(a == b);
System.out.println(a > b);
System.out.println(a < b);
}
}
今日問題:
請問主程序輸出結果是什么废麻?(問題分析將在每日一題20161221公布)