因簡書改版后無法添加擴展鏈接,20170210問題解析請到公眾號查看,問題解析在公眾號首發,公眾號ID:weknow619。
package Feb2017;
public class Ques0213 {
final int num;
public Ques0213() {
System.out.println(num + 10);
}
public static void main(String[] args) {
Ques0213 q = new Ques0213();
}
}
今日問題:
請問主程序輸出結果是什么?