What's an enum class and why should I care?

前端 未结 4 1796
谎友^
谎友^ 2021-01-12 19:21

For one who has never written a line of C++11, and who has, at the moment, no opportunity to program in C++11, can you, in one short paragraph., tell me:

What is an

4条回答
  •  轮回少年
    2021-01-12 19:48

    At first I was confused by your question, but I think you want to know the difference between c++ enum and that in c++11. As best as I can understand, in the later, you have strongly typed enums which allows you to scope your them. I think this explains it well. CHEERS

提交回复
热议问题