Computer Science, asked by Bapibigbos7930, 1 year ago

What is a set in Java?

Answers

Answered by adityaviki02p9oi9t
0

// Java code for adding elements in Set

import java.util.*;

public class Set_example

{

   public static void main(String[] args)

   {

       // Set deonstration using HashSet

       Set<String> hash_Set = new HashSet<String>();

       hash_Set.add("Geeks");

       hash_Set.add("For");

       hash_Set.add("Geeks");

       hash_Set.add("Example");

       hash_Set.add("Set");

       System.out.print("Set output without the duplicates");

 

       System.out.println(hash_Set);

 

       // Set deonstration using TreeSet

       System.out.print("Sorted Set after passing into TreeSet");

       Set<String> tree_Set = new TreeSet<String>(hash_Set);

       System.out.println(tree_Set);

   }

}

Similar questions