Difference of Enum between java and C++?

后端 未结 6 981
渐次进展
渐次进展 2020-12-06 06:08

I am learning Enums in java I like to know what are the major differences of Enum in java and C++. Thanks

6条回答
  •  长情又很酷
    2020-12-06 06:45

    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.

提交回复
热议问题