Codectionary / Developer documentation / C++

C++ scoped enum values

C++ reference for c++ scoped enum values.

Syntax

enum class Color { red, blue };
Color color = Color::blue;

Examples

C++ scoped enum values example

A focused example you can adapt while practising.

enum class Color { red, blue };
Color color = Color::blue;

Best practices

  • Start with the smallest working example, then adapt it to your project.
  • Use the language’s standard library and idioms before introducing extra dependencies.

At a glance

Purpose
Systems and general-purpose software
File extension
.cpp · .hpp
Runs in
Compiled native applications
Usually used with
Compiler and standard library

Specifications & further reading

Related C++ documentation