Java は、コレクション インターフェイスとして知られるデータを保存および操作するためのインターフェイスを提供します。コレクションは、あらゆる種類のオブジェクトの保存と操作に役立つ Set インターフェイスのスーパー インターフェイスです。 Set インターフェイスは、重複データを許可しない Collection として際立っています。つまり、d1 と d2 が同じ Set 内の 2 つのデータ エントリである場合、d1.equals(d2) の結果は false になるはずです。 Set ではほぼ 1 つの null 要素が許可されます。 Set は数学的な集合の抽象化をモデル化します。
無料ソフトウェア開発コースを始めましょう
Web 開発、プログラミング言語、ソフトウェア テスト、その他
セットの実装には、ソートされた表現としての HashedSet、LinkedHashSet、または TreeSet があります。
以下は Java での Set Interface の例です:
コード:
import java.util.*; public class Main{ public static void main(String[] args) { // Set demonstration using HashSet Set<Integer > hash = new HashSet<Integer>(); hash.add(1); hash.add(4); hash.add(1); hash.add(3); hash.add(2); System.out.print("Set output without duplicates"); System.out.println(hash); } }
出力:
コード:
import java.util.*; public class Main{ public static void main(String[] args) { // Set demonstration using TreeSet Set<Integer> tree = new TreeSet<Integer>(); tree.add(1); tree.add(4); tree.add(1); tree.add(3); tree.add(2); System.out.print("Set output without duplicates and sorted data "); System.out.println(tree); } }
出力:
さまざまなデータ オブジェクトの保存と操作のために Set でサポートされているメソッド。
コードでのメソッドの使用:
コード:
import java.util.LinkedHashSet; public class Main { public static void main(String[] args) { LinkedHashSet<String> linked = new LinkedHashSet<String>(); // Adding element to LinkedHashSet linked.add("Apple"); linked.add("Ball"); linked.add("Cat"); linked.add("Dog"); // Cannot add new element as Apple already exists linked.add("Apple"); linked.add("Egg"); System.out.println("Size of LinkedHashSet: " + linked.size()); System.out.println("Old LinkedHashSet:" + linked); System.out.println("Remove Dog from LinkedHashSet: " + linked.remove("Dog")); System.out.println("Trying Remove Zoo which is not present "+ "present: " + linked.remove("Zoo")); System.out.println("Check if Apple is present=" + linked.contains("Apple")); System.out.println("New LinkedHashSet: " + linked); } }
出力:
HashSet は通常、検索、削除、挿入の操作に使用されます。 HashSet は TreeSet より高速で、ハッシュ テーブルを使用します。 TreeSet は、ソートされたデータ ストレージ プロパティにより、保存目的で使用されます。 TreeSet は Java のバックエンドから TreeMap を使用します。ソートされたデータを保存するには、要素をハッシュマップに挿入し、データをツリーに挿入してソートします。
これを行うには 3 つの方法があります:
コード:
import java.util.*; public class Main { public static void main(String[] args) { Set<Integer > hash = new HashSet<Integer>(); hash.add(1); hash.add(4); hash.add(1); hash.add(3); hash.add(2); System.out.print("HashSet"); System.out.println(hash); //adding HashSet as a parameter to TreeSet constructor Set< Integer> treeSet = new TreeSet<>(hash); // Print TreeSet System.out.println("TreeSet: " + treeSet); } }
出力:
コード:
import java.util.*; public class Main { public static void main(String[] args) { Set<Integer > hash = new HashSet<Integer>(); hash.add(1); hash.add(4); hash.add(1); hash.add(3); hash.add(2); System.out.print("HashSet"); System.out.println(hash); //converting HashSet to TreeSet using addAll() method Set<Integer> treeSet = new TreeSet<>(); treeSet.addAll(hash); // Print TreeSet System.out.println("TreeSet: " + treeSet); } }
出力:
コード:
import java.util.*; public class Main { public static void main(String[] args) { Set<Integer > hash = new HashSet<Integer>(); hash.add(1); hash.add(4); hash.add(1); hash.add(3); hash.add(2); System.out.print("HashSet"); System.out.println(hash); //converting HashSet to TreeSet using for each loop Set<Integer> treeSet = new TreeSet<>(); for (Integer i : hash) { treeSet.add(i); } // Print TreeSet System.out.println("TreeSet: " + treeSet); } }
出力:
これは Java でインターフェイスを設定するためのガイドです。ここでは Set Interface の概要と、Java とそのメソッドでデータを保存および操作するために Set Interface を使用する方法について説明します。詳細については、他の推奨記事を参照することもできます –
以上がJavaでインターフェースを設定するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。