About 19,500 results
Open links in new tab
  1. Enumeration - Wikipedia

    As such, most programming languages offer enumerations as an extensional method for defining concepts, providing a contrast and alternative to intensional classes (programming).

  2. Enumeration (or enum) in C - GeeksforGeeks

    3 days ago · An enumeration (enum) is a user-defined data type that assigns meaningful names to a set of integer constants. By default, the first enum constant has the value 0, and each subsequent …

  3. C# Enumerations - C# | Microsoft Learn

    Apr 13, 2026 · C# enumerations Summarize this article for me In this article Declare an enum Specify an underlying type and explicit values Use enums in switch expressions Bit flags Convert between …

  4. ENUMERATION Definition & Meaning - Merriam-Webster

    Jul 2, 2026 · enumeration noun enu· mer· a· tion i-ˌn (y)ü-mə-ˈrā-shən plural enumerations 1 : the act or process of making or stating a list of things one after another the rebel leader's effective enumeration …

  5. Enumeration in C++ - GeeksforGeeks

    Apr 26, 2026 · In C++, enumeration is a user-defined data type that consists of a set of named integer constants. It helps in assigning meaningful names to integer values to improve code readability and …

  6. Enumeration types - C# reference | Microsoft Learn

    Jan 14, 2026 · An enumeration type (or enum type) is a value type defined by a set of named constants of the underlying integral numeric type. To define an enumeration type, use the enum keyword and …

  7. C++ Enumeration (With Examples) - Programiz

    Here, we have added italics to our design. Note, only code for italics is written inside the if statement. You can accomplish almost anything in C++ programming without using enumerations. However, …

  8. Enumerations - cppreference.com

    Enumerations permit the declaration of named constants in a more convenient and structured fashion than does #define; they are visible in the debugger, obey scope rules, and participate in the type …

  9. C Enum (Enumeration) - W3Schools

    Enum is short for "enumerations", which means "specifically listed". To access the enum, you must create a variable of it. Inside the main () method, specify the enum keyword, followed by the name of …

  10. enum — Support for enumerationsPython 3.14.6 documentation

    1 day ago · @enum.property ¶ A decorator similar to the built-in property, but specifically for enumerations. It allows member attributes to have the same names as members themselves.