About 38,400 results
Open links in new tab
  1. Enumeration (or enum) in C - GeeksforGeeks

    Jul 18, 2026 · An enumeration (enum) is a user-defined data type that assigns meaningful names to a set of integer constants. By …

  2. Enumerated type - Wikipedia

    In computer programming, an enumerated type[a] is a data type consisting of a set of named values called elements, members, …

  3. Java Enums - W3Schools

    An enum is a special "class" that represents a group of constants (unchangeable variables, like final variables). To create an enum, …

  4. Enumeration types - C# reference | Microsoft Learn

    Jan 14, 2026 · The System.Enum type is the abstract base class of all enumeration types. It provides many methods to get …

  5. enum — Support for enumerations — Python 3.14.7 documentation

    2 days ago · Source code: Lib/enum.py Important: This page contains the API reference information. For tutorial information and …

  6. C Enum (Enumeration) - W3Schools

    C Enums An enum is a special type that represents a group of constants (unchangeable values). To create an enum, use the enum …

  7. Enumeration declaration - cppreference.com

    1) enum-specifier, which appears in decl-specifier-seq of the declaration syntax: defines the enumeration type and its enumerators. …

  8. What are enums and why are they useful? - Stack Overflow

    Jan 17, 2011 · Methods can be part of the base enum and overridden by each type. And, with the behavior attached to the enum, it …

  9. C# Enumerations - C# | Microsoft Learn

    Apr 13, 2026 · Learn how to define and use enumeration types in C#, including declaring enums, using them in switch expressions, …

  10. enum in Java - GeeksforGeeks

    May 27, 2026 · In Java, enum is a special data type used to define a fixed set of constant values in a type-safe way. It improves code …