How to define initialize and print HashSet in Java

1 Answer

0 votes
package javaapplication1;

import java.util.HashSet;
import java.util.Iterator;

public class JavaApplication1 {

    public static void main(String[] args) {

        HashSet hashSet = new HashSet();

        hashSet.add(new Long("984772342"));
        hashSet.add(new Long("894736632"));
        hashSet.add(new Long("27346628349"));
        hashSet.add(new Long("984738774234"));
        hashSet.add(new Long("893489323233"));

        Iterator itr = hashSet.iterator();
 
        while (itr.hasNext()) 
            System.out.println(itr.next());
  }
}
  

/*
run:

984772342
27346628349
894736632
893489323233
984738774234

*/

 



answered Sep 25, 2016 by avibootz
edited Jul 6, 2025 by avibootz

Related questions

3 answers 121 views
121 views asked Jul 6, 2025 by avibootz
1 answer 118 views
118 views asked Jan 16, 2022 by avibootz
1 answer 200 views
2 answers 147 views
1 answer 133 views
1 answer 169 views
169 views asked Feb 16, 2021 by avibootz
1 answer 157 views
...