Enums vs enum class in C++
Posted in

Enums vs enum class in C++

Welcome to the next pikoTutorial! When dealing with enumerations in C++, developers have two primary options: traditional enum and enum class. Traditional enums vs enum classes At the first glance, the only difference appears to be in the class keyword: The real difference is however in how both of them…

Enums vs enum class in C++ Read More