Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,939 questions

51,876 answers

573 users

How to add HashSet as a static field in Java

1 Answer

0 votes
package javaapplication1;

import java.util.HashSet;

public class JavaApplication1 {

    static HashSet<Integer> hash = new HashSet<>();

    static void addValue(int n) {
        hash.add(n);
    }
    
    static void addNumbers() {
        hash.add(6);
        hash.add(7);
        hash.add(8);
    }

    public static void main(String[] args) {

        try {

            hash.add(1);
            hash.add(2);
            hash.add(3);

            addValue(4);
            addValue(5);
            
            addNumbers();

            hash.stream().forEach((s) -> {
                System.out.println(s);
            });

        } catch (Exception e) {
            System.out.print(e.toString());
        }
    }
}

/*
             
run:

1
2
3
4
5
6
7
8
    
 */

 



answered Dec 1, 2016 by avibootz

Related questions

1 answer 106 views
106 views asked Jul 23, 2023 by avibootz
1 answer 90 views
1 answer 102 views
1 answer 159 views
159 views asked Feb 16, 2021 by avibootz
1 answer 174 views
1 answer 185 views
1 answer 183 views
...