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 7433857
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:44:22+00:00 2026-05-29T09:44:22+00:00

If I want to implement the following code, would enums be appropriate? I’ve looked

  • 0

If I want to implement the following code, would enums be appropriate? I’ve looked up a few questions on enums, but I’m still a bit unsure.

if (dayOfWeek == Monday)
{
    // Do something
}
else if (dayOfWeek == Tuesday || dayOfWeek == Wednesday)
{
    // Do something else
}

If this seems right, how would I go about initialising the enum? Would it go in the header or implementation file?

  • 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-29T09:44:23+00:00Added an answer on May 29, 2026 at 9:44 am

    If I want to implement the following code, would enums be appropriate?

    Without getting too detailed about alternatives — Yes.

    how would I go about initialising the enum?

    I typically declare an enum in C like so:

    typedef enum MONDayOfWeek {
      MONDayOfWeek_Undefined = 0,
      MONDayOfWeek_Monday,
      MONDayOfWeek_Tuesday,
      MONDayOfWeek_Wednesday,
      MONDayOfWeek_Thursday,
      MONDayOfWeek_Friday,
      MONDayOfWeek_Saturday,
      MONDayOfWeek_Sunday
    } MONDayOfWeek;
    
    // in use:
    MONDayOfWeek day = MONDayOfWeek_Monday;
    

    MON would be your library or organization’s prefix. DayOfWeek would be the enum name within the library, then the values are appended.

    Although it’s wordy, you tend to avoid collisions quite well.

    Would it go in the header or implementation file?

    In the header, if you want it to be used by multiple files, else in the implementation file.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to implement the following constraints in mysql: create table TypeMapping( ... constraint
I want to implement an atomic transaction like the following: BEGIN TRAN A SELECT
I want implement in my software solution an VBA editor but in c# 3.0.
I'm new to WPF but I need to implement following functionality: I have a
I want to implement a function tracer, which would trace how much time a
What would be the best practice to implement the following situation with Hibernate. We
I would like to implement the following. When the user rotates the iPhone, I
I want to implement a new language, and I would like to do it
I want to log my log strings to a file. I implemented the following
given this class definition: public class Frame { IFrameStream CapturedFrom; } I want implement

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.