規範

public static void main(String[] args) {
    String type = "323";
    String s = listUsers(type);
    System.out.println(s);
}

private static String listUsers(String type) {
    boolean b = Objects.equals(null, type);
    if (b) {
        System.out.println("111111");
    }
    return "33";
}

 

不要在 foreach 循環裏進行元素的 remove/add 操做。remove 元素請使用 Iterator 方式,若是併發操做,須要對 Iterator 對象加鎖併發

一、錯誤的:優化

說明:以上代碼的執行結果確定會出乎你們的意料,那麼試一下把「1」換成「2」,會是一樣的 結果嗎?spa

二、正確:3d

優化一下對象

相關文章
相關標籤/搜索