On Your Mark
2013年11月10日日曜日
Java 基本 設計(Java)
public static Set union(Set s1, Set s2) { Set hoge = new HashSet(s1); hoge.addAll(s2); return hoge; }
Set s1 = new HashSet(Arrays.asList("hoge", "hoge2")); Set s2 = new HashSet(Arrays.asList("foo", "foo2")); union(s1, s2);
public static HashMap newHashMap() { return new HashMap(); }
Map map = newHashMap();
QooQ
0 件のコメント:
コメントを投稿