Java HashSet 集合
Java HashSet
是项目的集合,其中每个项目都是唯一的,可以在 java.util
包中找到:
实例
创建一个名为 cars 的 HashSet
对象,该对象将存储字符串:
import java.util.HashSet; // 导入 HashSet 类
HashSet<String> cars = new HashSet<String>();
添加项目
HashSet
类有很多有用的方法。 例如,要向其中添加项目,请使用 add()
方法:
实例
// 导入 HashSet 类
import java.util.HashSet;
public class MyClass {
public static void main(String[] args) {
HashSet<String> cars = new HashSet<String>();
cars.add("Volvo");
cars.add("BMW");
cars.add("Ford");
cars.add("BMW");
cars.add("Mazda");
System.out.println(cars);
}
}
注释: 在上面的示例中,即使 BMW 被添加了两次,但它在集合中只出现一次,因为集合中的每个项目都必须是唯一的。
检查项目是否存在
要检查某个项目是否存在于 HashSet 中,请使用 contains()
方法:
删除项目
要删除项目,请使用 remove()
方法:
要删除所有项目,请使用 clear()
方法:
HashSet 大小
要找出有多少项目,请使用 size
方法:
遍历一个
使用 for-each 循环遍历 HashSet
的项目:
其他类型
HashSet 中的项目实际上是对象。 在上面的示例中,我们创建了"String"类型的项目(对象)。 请记住,Java 中的 String 是一个对象(不是原始类型)。 要使用其他类型,例如 int,您必须指定一个等效的
包装类: Integer
。 对于其他原始类型,请使用: Boolean
用于 boolean,
Character
用于 char, Double
用于 double 等:
实例
使用存储 Integer
对象的 HashSet
:
import java.util.HashSet;
public class MyClass {
public static void main(String[] args) {
// 创建一个名为 numbers 的 HashSet 对象
HashSet<Integer> numbers = new HashSet<Integer>();
// 将值添加到集合
numbers.add(4);
numbers.add(7);
numbers.add(8);
// 显示 1 到 10 之间的数字在集合中
for(int i = 1; i <= 10; i++) {
if(numbers.contains(i)) {
System.out.println(i + " was found in the set.");
} else {
System.out.println(i + " was not found in the set.");
}
}
}
}