在内存中创建枚举集合对象的副本
创建枚举集合的copy(副本)对实际应用有不寻常的作用。
1.public static EnumSet copyOf(EnumSet s);// 创建一个存在的枚举集合的copy; Creates an enum set with the same element type as the specified enum set, initially containing the same elements (if any). 2.public static EnumSet copyOf(Collection c);// 将集合的元素转换成枚举集合元素, ...












