I am learning Enums in java I like to know what are the major differences of Enum in java and C++. Thanks
In Java you can even emulated extensible enums by letting them implement the same interface and then add all of their values to some sort of collection by calling their values() method.