What are enums and why are they useful?

后端 未结 27 1979
一整个雨季
一整个雨季 2020-11-22 07:06

Today I was browsing through some questions on this site and I found a mention of an enum being used in singleton pattern about purported thread safety benefits

27条回答
  •  爱一瞬间的悲伤
    2020-11-22 07:39

    Instead of making a bunch of const int declarations

    You can group them all in 1 enum

    So its all organized by the common group they belong to

提交回复
热议问题