Java中的 EnumSet range() 方法
Java中的Java .util.EnumSet.range( E start_point, E end_point ) 方法用于创建一个枚举集,其中包含参数中指定范围定义的元素。
句法:
Enum_set = EnumSet.range(E start_point, E end_point)
参数:该方法接受枚举的对象类型的两个参数:
- start_point:这是指需要添加到枚举集中的起始元素。
- end_point:这是指需要添加到枚举集中的最后一个元素。
返回值:该方法返回指定范围内提及的元素创建的枚举集。
异常:该方法抛出两种类型的异常:
- 如果任何开始或最后一个元素为 NULL,则会引发NullPointerException 。
- 当第一个元素相对于该位置大于最后一个元素时,将引发IllegalArgumentException 。
下面的程序说明了 range() 方法的使用:
方案一:
// Java program to demonstrate range() method
import java.util.*;
// Creating an enum of GFG type
enum GFG {
Welcome,
To,
The,
World,
of,
Geeks
}
;
public class Enum_Set_Demo {
public static void main(String[] args)
{
// Creating an EnumSet
EnumSet e_set;
// Input the values using range()
e_set = EnumSet.range(GFG.The, GFG.Geeks);
// Displaying the new set
System.out.println("The enum set is: " + e_set);
}
}
输出:
The enum set is: [The, World, of, Geeks]
方案二:
// Java program to demonstrate range() method
import java.util.*;
// Creating an enum of CARS type
enum CARS {
RANGE_ROVER,
MUSTANG,
CAMARO,
AUDI,
BMW
}
;
public class Enum_Set_Demo {
public static void main(String[] args)
{
// Creating an EnumSet
EnumSet e_set;
// Input the values using range()
e_set = EnumSet.range(CARS.RANGE_ROVER, CARS.CAMARO);
// Displaying the new set
System.out.println("The enum set is: " + e_set);
}
}
输出:
The enum set is: [RANGE_ROVER, MUSTANG, CAMARO]