Tagged Questions
5
votes
2answers
284 views
Can “construct on first use” idiom fail under any circumstances?
I'm building my program (tests actually) using some static library.
This library contains one file inside which I have functions like that:
string& GetString() {
static string strFilename;
...
4
votes
2answers
218 views
static member explicit definition
Consider this code:
#include<iostream>
using namespace std;
class Wilma
{
public:
static int i;
Wilma()
{
cout<<"\nWilma ctor\n";
...
3
votes
2answers
426 views
How to prevent the linker from optimizing away startup code?
I have the following problem: My (C++-)project consists of several subprojects. In each, I have several files with code I want to run at startup. My solution so far is to use static variables which ...