What does EnumSet really mean?

后端 未结 10 1506
小蘑菇
小蘑菇 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:59

    It quickly turn any Enum elements into a set, EnumSet is yet another type of Set.

    public enum Style { BOLD, ITALIC, UNDERLINE, STRIKETHROUGH }
    
    EnumSet.of(Style.BOLD, Style.ITALIC);
    

提交回复
热议问题