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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T12:54:34+00:00 2026-05-22T12:54:34+00:00

Is this particular code prone to the static initialization order fiasco? I.e. can I

  • 0

Is this particular code prone to the static initialization order fiasco? I.e. can I assume that static initialization in compilation unit “B” is already done when I access B’s static member function?

// a.h
struct A {
    static int foo();
    static int var;
}

// a.cpp
#include <a.h>
int A::foo() {
    return var;
}
int A::var = 42;


// b.h
struct B {
    B::B();
    static int var;
}

// b.cpp
#include <b.h>
#include <a.h>
B::B() {
    var = A::foo();
}

// c.h
struct C {
    static B b;
}

// c.cpp
B C::b;

Or do I have the code like that:

// a.h
static int &A::var();

// a.cpp
int &A::var() {
    static value = 42;
    return value;
}

int A::foo() {
    return var();
}

References to the standard would be appreciated.

  • 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-22T12:54:35+00:00Added an answer on May 22, 2026 at 12:54 pm

    Yes you can see the problem when accessing through a static function.
    See example below guaranteed to fail.

    The way to solve this is not to access “Static storage duration objects” before main has started.

    If for some reason you need to access objects from the constructor of a “Static Storage duration object” then these objects should be wrapped up so that you gurantee that they are fully constructed before use. The best way to do this is to use “static function objects” (a type of static storage duration object that are constructed on demand).

    // a.cpp
    MyType&  A::getInstance()
    {
        static MyType myInstance;
        return myInstance;
    }
    

    Example guaranteed to fail:

    struct A
    {
         static A  instanceA1;
         static A& getInstance() { return instanceA1;}
    };
    
    struct B
    {
         static B instanceB1;
         static B& getInstance() { return instnaceB1;}
         A& member;
    
         B(): member(A::getInstance()) {}
    }
    
    B B::instanceB1;   // Constructure uses A::getInstance() which returns A::instance
                       // But A::instance has not been constructed yet.
                       // Order of instanciation in the same compilation unit is guranteed
                       // So we know this will not work.
    A A::instanceA1;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.