- 単一の要素を挿入する方法:
LinkedHashSet<String> linkedHashSet = new LinkedHashSet<>();
linkedHashSet.add("要素1");
- 複数の要素を挿入する方法:
LinkedHashSet<String> linkedHashSet = new LinkedHashSet<>();
linkedHashSet.add("要素1");
linkedHashSet.add("要素2");
linkedHashSet.add("要素3");
- 別のコレクションの要素を挿入する方法:
List<String> elements = new ArrayList<>();
elements.add("要素1");
elements.add("要素2");
elements.add("要素3");
LinkedHashSet<String> linkedHashSet = new LinkedHashSet<>(elements);
- コレクションの要素を一度に挿入する方法:
LinkedHashSet<String> linkedHashSet = new LinkedHashSet<>();
Collections.addAll(linkedHashSet, "要素1", "要素2", "要素3");
これらのコード例では、LinkedHashSetのインスタンスを作成し、add
メソッドを使用して要素を挿入しています。要素の順序は挿入の順序に従って保持されます。
LinkedHashSetに要素を追加するさまざまな方法がありますが、いずれの方法でも要素の順序が保持されることに注意してください。また、LinkedHashSetは重複する要素を許容しません。