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 128 views
128 views asked Jul 23, 2023 by avibootz
1 answer 107 views
107 views asked Jul 22, 2023 by avibootz
1 answer 127 views
1 answer 194 views
194 views asked Feb 16, 2021 by avibootz
1 answer 207 views
1 answer 201 views
1 answer 234 views
...