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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T00:53:29+00:00 2026-05-16T00:53:29+00:00

I have some singleton class (please, don’t speak about singleton usage). class InputSystem :

  • 0

I have some singleton class (please, don’t speak about singleton usage).

class InputSystem : boost::serialization::singleton<InputSystem>
{
private:
   boost::shared_ptr<sf::Window> mInputWindow;
public:
   InputSystem()
   {
      mInputWindow = boost::shared_ptr<sf::Window>( new sf::Window(someARgs) );
      someMethod();
   }

   void someMethod()
   {
      mInputWindow->...() // Calling some methods of sf::Window class
      // Everything  is fine here
   }

   const sf::Input &Handle() const
   {
      return mInputWindow.get()->GetInput();
   }
};

void main()
{
   InputSystem::get_mutable_instance().Handle(); // Here is all members of InputSystem have invalid addresses in memory (0x000)
}

What’s wrong could be there?

  • 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-16T00:53:30+00:00Added an answer on May 16, 2026 at 12:53 am

    Here is all members of InputSystem have invalid addresses in memory (0x000)

    Either someMethod() is zeroing your class data, or you have misdiagnosed the issue.

    Change your main function to this:

    InputSystem& inputSystem = InputSystem::get_mutable_instance();
    inputSystem.Handle();
    

    This puts the creation of the singleton and the first attempt to use it onto separate lines. Fire up your debugger and step through the code looking for the exact point that your singleton’s data is corrupted.

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

Sidebar

Related Questions

I have some class which uses boost singleton. It calls some function from own
I have an object of some class that obeys the singleton pattern. I need
I have some confusion with singleton class, below are my some points: Can singleton
I have some class CurrentUser class CurrentUser < User include Singleton end User is
I have a singleton class to download some data from the web. I am
I have a singleton class that is shared by some threads. within a method
I have some class it is a singleton we have this class in already
I have seen some people in SO commenting that Singleton Pattern is an anti-pattern.
I have a Singleton to manage some variables I need in various places in
I have a singleton object that use another object (not singleton), to require some

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.