What does EnumSet really mean?

后端 未结 10 1507
小蘑菇
小蘑菇 2020-12-04 16:08

I have the following example:

import java.util.EnumSet;
import java.util.Iterator;

public class SizeSet {

    public static void main(String[] args) {
             


        
10条回答
  •  抹茶落季
    2020-12-04 16:51

    EnumSet is specifically used for storing the enum type element and iterating over it quickly. Eg.

    for (Day d : EnumSet.range(Day.MONDAY, Day.FRIDAY))
            System.out.println(d);
    

    The above snippet will display the days of the week from Monday through Friday.

提交回复
热议问题