How to print a HashSet in Java

3 Answers

0 votes
import java.util.HashSet;
import java.util.Iterator;
 
public class PrintHashSet {
    public static void main(String args[]) {
        HashSet<String> hset = new HashSet<>();
          
        hset.add("java");
        hset.add("c");
        hset.add("c++");
        hset.add("c#");
        hset.add("python");
        hset.add("rust");

        Iterator<String> s = hset.iterator();  
        while(s.hasNext()) {  
           System.out.println(s.next());  
        }
    }
}



/*
run:

c#
rust
c++
python
java
c

*/

 



answered Jul 6, 2025 by avibootz
0 votes
import java.util.HashSet;

public class PrintHashSet {
    public static void main(String args[]) {
        HashSet<String> hset = new HashSet<>();
          
        hset.add("java");
        hset.add("c");
        hset.add("c++");
        hset.add("c#");
        hset.add("python");
        hset.add("rust");

        System.out.println(hset); 
    }
}



/*
run:

[c#, rust, c++, python, java, c]

*/

 



answered Jul 6, 2025 by avibootz
0 votes
import java.util.HashSet;

public class PrintHashSet {
    public static void main(String args[]) {
        HashSet<String> hset = new HashSet<>();
          
        hset.add("java");
        hset.add("c");
        hset.add("c++");
        hset.add("c#");
        hset.add("python");
        hset.add("rust");

        for (String element : hset) {
            System.out.println(element);
        }
    }
}



/*
run:

c#
rust
c++
python
java
c

*/

 



answered Jul 6, 2025 by avibootz

Related questions

1 answer 176 views
1 answer 118 views
118 views asked Jan 16, 2022 by avibootz
2 answers 147 views
1 answer 134 views
134 views asked Jul 23, 2023 by avibootz
1 answer 113 views
113 views asked Jul 22, 2023 by avibootz
1 answer 133 views
1 answer 180 views
180 views asked Jan 16, 2022 by avibootz
...