I need to create a Set
with initial values. 我須要建立一個具備初始值的Set
。 this
Set<String> h = new HashSet<String>(); h.add("a"); h.add("b");
Is there a way to do this in one line of code? 有沒有辦法在一行代碼中作到這一點? For instance, it's useful for a final static field. 例如,它對於最終的靜態字段頗有用。 spa