Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 574941
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T13:53:06+00:00 2026-05-13T13:53:06+00:00

I have two enums in my code: enum Month {January, February, March, April, May,

  • 0

I have two enums in my code:

enum Month {January, February, March, April, May, June, July,
        August, September, October, November, December};
enum ShortMonth {Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec};

May is a common element in both enums, so the compiler says:

Redeclaration of enumerator ‘May‘.

Why does it say so? And how can I circumvent this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T13:53:06+00:00Added an answer on May 13, 2026 at 1:53 pm

    Enum names are in global scope, they need to be unique. Remember that you don’t need to qualify the enum symbols with the enum name, you do just:

    Month xmas = December;
    

    not:

    Month xmas = Month.December;  /* This is not C. */
    

    For this reason, you often see people prefixing the symbol names with the enum’s name:

    enum Month { Month_January, Month_February, /* and so on */ };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code snippet: enum { one } x; enum { two
1) - i have two enums enum FixedScriptingEvent { FIXED_SCRIPTING_EVENT_NOTOUCH, FIXED_SCRIPTING_EVENT_OVER_MOVED, FIXED_SCRIPTING_EVENT_OVER_RELEASED, FIXED_SCRIPTING_EVENT_OUTSIDE_RELEASED, FIXED_SCRIPTING_EVENT_OUTSIDE_MOVED,
In my application, I have two equivalent enum s. One lives in the DAL,
I have two tables: Sales_Order Order_ID Buyer_ID Emp_ID Status (ENUM) 1 2 3 P
For example, I have two elements in an enum. I would like the first
public enum ObjectType { Country=0, Region=1, Province=2, City=3, Hotel=4 } I have two applications
I have an example class containing two data points: public enum Sort { First,
Say you have an enum that represents an error code. There will be several
In my project I have two chunk of code which I would like to
I have two libraries (.so), which I load in java code. However there are

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.