HashSet size() trong java với ví dụ cụ thể

HashSet size() trong java trả về số lượng phần tử hiện có trong HashSet.

Syntax

public int size();

Ví dụ

import java.util.HashSet;

public class Main {
    public static void main(String[] args) {
        HashSet<String> h = new HashSet<>();
        System.out.println("Size: " + h.size());
        h.add("zzz");
        h.add("xxx");
        System.out.println("Size: " + h.size());
    }
}

Output:

Size: 0
Size: 2

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x