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

Method contains() trong HashSet được sử dụng để kiểm tra tự tồn tại của phần tử được chỉ định trong HashSet.

syntax:

public boolean contains(Object o)

Tham số truyền vào Object o có cùng kiểu dữ liệu với HashSet dùng để kiểm tra.

Kết quả trả về true nếu Object chứa trong HashSet ngược lại false.

import java.util.HashSet;

public class Main {
    public static void main(String[] args) {
        HashSet<String> h = new HashSet<String>();

        // Adding elements into HashSet usind add()
        h.add("HGA");
        h.add("SHI");
        h.add("LFD");
        h.add("HGA");

        System.out.println("HGA is contains: " + h.contains("HGA"));
        System.out.println("AKG is contains: " + h.contains("AKG"));
    }
}

Output:

HGA is contains: true
AKG is contains: false

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