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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:28:56+00:00 2026-05-27T01:28:56+00:00

I am trying to implement the following class. However, when I try to instantiate

  • 0

I am trying to implement the following class. However, when I try to instantiate an object of the class within its definition and pass “0” as value to initialize the object, i get an error:

“a type specifier is expected”.

Can anyone explain how can i remove this error?

class MessageType
{
public:
    static const MessageType  msgEvent(0);

private:
    MessageType();
    virtual ~MessageType();
    MessageType(int);

};
  • 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-27T01:28:56+00:00Added an answer on May 27, 2026 at 1:28 am

    You need to initialize(define) it outside the class definition in a cpp file.

    MessageType const MessageType::msgEvent;
    

    However, Your intent in doing so is not very clear. Are you trying to implement a Singleton Pattern, probably this sample implementation might help, I leave it to you to decide, whether you really need a singleton, inspite of its disadvantages:

    //MessageType.h
    #include <boost/noncopyable.hpp>
    class MessageType: private boost::noncopyable
    {
       public:
         static MessageType* instance();
    
       private:
         MessageType();
         ~MessageType();
         static bool g_initialised;
         // static  initialisation
         static MessageType g_instance;
         // dynamic initialisation
    };
    
    // MessageType.cpp
     #include "MessageType.hpp"
     #include <ostream>
     #include <iostream>
     #include <cstring>
     bool MessageType::g_initialised;
        // static  initialisation
    MessageType MessageType::g_instance;
    
        // dynamic initialisation
     MessageType::MessageType()
     {
         g_initialised = true;
     }
    
     MessageType::~MessageType()
     {
         g_initialised = false;
     }
    
     MessageType* MessageType::instance()
     {
         return g_initialised ? &g_instance : 0;
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to implement the following method to get the bus corresponding to
I'm trying to implement the following mod_rewrite rule: host.com/developer/ => host.com/developer/index.py host.com/developer/branchX => host.com/developer/index.py?branch=branchX
I'm trying to implement routing such as the following: posts/535434/This-is-a-post-title posts/tagged/tags+here // Matches {controller}/{action}/{id}
I'm trying to implement XOR in javascript in the following way: // XOR validation
I'm trying to implement my own GenericIdentity implementation but keep receiving the following error
I'm trying to implement http://github.com/bengottlieb/Twitter-OAuth-iPhone/tree/master into my code. I'm following the Demo provided and
I'm having the following issue in a WinForms app. I'm trying to implement Hotkeys
I'm trying to implement the following: I have an Items Manager, that has an
I'm trying to implement ServiceStack into my MVC3 project, and am following the tutorial
I'm trying to learn interfaces and want to try the following: Let's say I

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.