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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T09:02:05+00:00 2026-06-03T09:02:05+00:00

I always make a class called Constants in Java to store constant values which

  • 0

I always make a class called Constants in Java to store constant values which will be used in an application.

For all the classes of the application

class Constants {

    public static final int GOOD_RES = 1;
    public static final int BAD_RES = 0;
    public static final int FILE_NOT_READ = 10;
    // To be continued
}

or for a single class

class SomeClass {

    private static final int GOOD_RES = 1;
    private static final int BAD_RES = 0;
    private static final int FILE_NOT_READ = 10;
    // To be continued
}

How to do the same in C++? I can make a class in a header file with declarations and place definitions in a CPP file. For example.

Header file.

class const_values {
    const static int GOOD_STATE = 1;
    const static int BAD_STATE = 2;
    const static string s;
}

CPP file

string const_values::s = "lorem ipsum";

Is it OK?

  • 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-06-03T09:02:06+00:00Added an answer on June 3, 2026 at 9:02 am

    Use namespace for that:

    constants.h:

    #include <string>
    namespace Constants
    {
        const int GOOD_STATE = 1;
        const int BAD_STATE = 2;
        const std::string str("test");
    }
    

    main.cpp:

    #include <iostream>
    #include "constants.h"
    int main(int argc, char** argv)
    {   
        std::cout << Constants::GOOD_STATE << " " << Constants::str << std::endl;
    }
    

    Output: 1 test

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

Sidebar

Related Questions

I have a Java class which can be called from shell. (via java [command][options])
I have a class called ItemBase from which a number of classes inherit. In
I have a class called Calculator, which is extended by many other classes. It
Whenever I use WCF, I always try to make immutable classes that end up
I'm trying to make sure my web application is always centered on the screen
I have a set of classes which extend an abstract class. The abstract class
I always have an class which needs to set up a timer for as
So my problem is this. I have a class called Globals that contains all
I used following code in java class of android. Everything works except it wont
I have a Sealed class in C#, which already exists and all methods 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.