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

  • Home
  • SEARCH
  • 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 272097
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T00:15:52+00:00 2026-05-12T00:15:52+00:00

I remember reading that static variables declared inside methods is not thread-safe. (See What

  • 0

I remember reading that static variables declared inside methods is not thread-safe. (See What about the Meyer’s singleton? as mentioned by Todd Gardner)

Dog* MyClass::BadMethod()
{
  static Dog dog("Lassie");
  return &dog;
}

My library generates C++ code for end-users to compile as part of their application. The code it generates needs to initialize static variables in a thread-safe cross-platform manner. I’d like to use boost::call_once to mutex the variable initialization but then end-users are exposed to the Boost dependency.

Is there a way for me to do this without forcing extra dependencies on end-users?

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

    You are correct that static initialization like that isn’t thread safe (here is an article discussing what the compiler will turn it into)

    At the moment, there’s no standard, thread safe, portable way to initialize static singletons. Double checked locking can be used, but you need potentially non-portable threading libraries (see a discussion here).

    Here’s a few options if thread safety is a must:

    1. Don’t be Lazy (loaded): Initialize during static initialization. It could be a problem if another static calls this function in it’s constructor, since the order of static initialization is undefined(see here).
    2. Use boost (as you said) or Loki
    3. Roll your
      own singleton on your supported platforms
      (should probably be avoided unless
      you are a threading expert)
    4. Lock a mutex everytime you need access. This could be very slow.

    Example for 1:

    // in a cpp:
    namespace {
        Dog dog("Lassie");
    }
    
    Dog* MyClass::BadMethod()
    {
      return &dog;
    }
    

    Example for 4:

    Dog* MyClass::BadMethod()
    {
      static scoped_ptr<Dog> pdog;
      {
         Lock l(Mutex);
         if(!pdog.get())
           pdog.reset(new Dog("Lassie"));
      }
      return pdog.get();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 182k
  • Answers 182k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Please refer to this article by Dave Ward. It is… May 12, 2026 at 4:23 pm
  • Editorial Team
    Editorial Team added an answer Did you mean, set a response header and then throw… May 12, 2026 at 4:23 pm
  • Editorial Team
    Editorial Team added an answer Try: SELECT OBJECT_NAME(m.object_id), m.* FROM SYS.SQL_MODULES m WHERE m.definition LIKE… May 12, 2026 at 4:23 pm

Related Questions

So, I was reading the Google testing blog, and it says that global state
When I started as at my first job as software developer I was assigned
For an application I am writing, I want to have extreme extensibility and extension
I noticed that some people write beans with support for the Property Change observer

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.