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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T15:04:21+00:00 2026-05-16T15:04:21+00:00

I need several C++ classes to have a static method register, however the implementation

  • 0

I need several C++ classes to have a static method “register”, however the implementation of register varies between those classes.

It should be static because my idea is to “register” all those classes with Lua (only once of course).

Obviously I can’t declare an interface with a static pure virtual function. What do you guys suggest me to do ? Simplicity is welcome, but I think some kind of template could work.

Example of what I would like to achieve

class registerInterface
{
public:
    static virtual void register() = 0; //obviously illegal
};

class someClass: public registerInterface
{
    static virtual void register()
    {
        //I register myself with Lua
    }
}

class someOtherClass: public registerInterface
{
    static virtual void register()
    {
        //I register myself with Lua in a different way

    }
}

int main()
{
    someClass::register();
    someOtherClass::register();

    return 0;
}
  • 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-16T15:04:22+00:00Added an answer on May 16, 2026 at 3:04 pm

    Based on how you’ve described the problem, it’s unclear to me why you even need the ‘virtual static method’ on the classes. This should be perfectly legal.

    class SomeClass {
      static void register(void) {
        ...
      }
    }
    
    class SomeOtherClass {
      static void register(void) {
        ...
      }
    }
    
    int main(int argc, char* argv[]) {
      SomeClass::register();
      SomeOtherClass::register();
    
      return 0;
    }
    

    Drop the RegisterInterface, I don’t think you need it.

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

Sidebar

Related Questions

I have several class where I need to inject a static method; this static
I have several classes that need to load some properties files, and I was
I have got several classes looking like the one below, and I need to
Writing a PHP app and have several classes that only have static methods (no
I have several classes that do not really need any state. From the organizational
I have several classes that I need to format. I need to place the
I have an interface that is used by several classes and the interface implementation
I have a need for methods in several classes that must always follow a
I need to convert several Java classes to C#, but I have faced few
I need to write C++ API, which consists of several exported C++ classes exposed

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.