因簡書改版后無法添加擴展鏈接,20170301問題解析請到公眾號查看立宜,問題解析在公眾號首發(fā)冒萄,公眾號ID:weknow619。
package Mar2017;
public class Ques0302 {
public static void main(String[] args) {
String str1 = new String("123");
String str2 = new String("123");
str1 = str1 + 1; // 1
str1 = null; // 2
str2 = str2 + str1; // 3
// 4
}
}
今日問題:
請問在何處垃圾回收器可能最先啟動橙数?