Tagged Questions
The static-initialization tag has no wiki summary.
10
votes
7answers
1k views
Thread-safe initialization of function-local static const objects
This question made me question a practice I had been following for years.
For thread-safe initialization of function-local static const objects I protect the actual construction of the object, but ...
8
votes
4answers
393 views
How to force a static member to be initialized?
Consider this example code:
template<class D>
char register_(){
return D::get_dummy(); // static function
}
template<class D>
struct Foo{
static char const dummy;
};
...
8
votes
3answers
208 views
Can threads be safely created during static initialization?
At some point I remember reading that threads can't be safely created until the first line of main(), because compilers insert special code to make threading work that runs during static ...
6
votes
2answers
176 views
C++ static initialization vs __attribute__((constructor))
Example:
struct Foo { Foo() { printf("foo\n"); } };
static Foo foo;
__attribute__((constructor)) static void _bar() { printf("bar\n"); }
Is it deterministic wether foo or bar is printed first?
(I ...
6
votes
7answers
3k views
Static variable initialization?
I want to know why exactly static variables in C, C++ and Java are initialized by zero by default? And why this is not true for local variables?
5
votes
2answers
197 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
123 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
59 views
Is the order of file-level static variables always the same within a given translation unit?
I have a program split up into two source files:
example.cpp
#include <iostream>
class A {
public:
A(int x) {
::std::cout << "In A(" << x << ")\n";
}
};
static ...
3
votes
2answers
138 views
C++ is it possible to delay initialization of constant static member?
I am using Qt but this is a generic C++ question. My case is simple, I have a class Constants which has a constant static member which I want to be initialized after certain function calls are made.
...
3
votes
3answers
314 views
std::set used as a static templated member variable
I am trying to make something like a Java style Enum, which I'm calling a flag. The requirements are that each flag is static so flags are directly referencable, each flag storing the string of it's ...
3
votes
2answers
2k views
Static pthreads mutex initialization
Using pthreads, how would one, in C, initialize a static array of mutexes?
For a single static mutex, it seems I can use PTHREAD_MUTEX_INITIALIZER. But what about an static array of them? As, in for ...
3
votes
1answer
403 views
java static inner class initialization errors
Context:
java.io.File class has a static inner class method as follows:
LazyInitialization.temporaryDirectory();
[EDITED to add some more code]
My code below eventually calls the above line of ...
3
votes
3answers
296 views
How to do static de-initialization if the destructor has side effects and the object is accessed from another static object's destructor?
There is a simple and well-known pattern to avoid the static initialization fiasco, described in section 10.13 of the C++ FAQ Lite.
In this standard pattern, there is a trade-off made in that either ...
2
votes
1answer
67 views
Static Initialization and Use of a Class in a Separate Module in D
In my program, I have a class that I want to be allocated before entering main(). I'd like to tuck these away in a separate module to keep the clutter out of my code; However, as soon as the module ...
2
votes
3answers
130 views
Initialize-On-Demand idiom vs simple static initializer in Singleton implementation
Is the Initialize-On-Demand idiom really necessary when implementing a thread safe singleton using static initialization, or would a simple static declaration of the instance suffice?
Simple ...
2
votes
1answer
106 views
Can I get a static initialization order fiasco failure when I access static members through a static function?
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?
...
2
votes
6answers
288 views
Imitate a static constructor in C++
This a question related to the initialization of objects in C++
I have a group of classes (not instances), inheriting from a common base class, and I need them to register info about themselves in a ...
2
votes
3answers
841 views
How to force gcc to link unreferenced, static C++ objects from a libraray
I'm using a C++ library that can be build as shared or static library.
This library uses a factory technique, where static objects register themselves when the program starts and the static objects ...
2
votes
4answers
259 views
How to initialize a static variable in a multithreaded context?
I thought up a good use of the static keyword inside a function to be something like this:
void threadSafeWrite(int *array, int writeIndex, int writeData){
static void *threadLock = ...
2
votes
3answers
180 views
Is there any way in C/C++ to detect if code is running during static initialization?
I'm writing a tracing library that is available as a DLL. It is consumed by basically every component in my system. One tricky requirement is that the tracing functions need to be invoked very early ...
2
votes
3answers
515 views
Java - Class type from inside static initialization block
Is it possible to get the class type from inside the static initialization block?
This is a simplified version of what I currently have::
class Person extends SuperClass {
String firstName;
...
2
votes
2answers
484 views
Is it normal for C++ static initialization to appear twice in the same backtrace?
I'm trying to debug a C++ program compiled with GCC that freezes at startup. GCC mutex protects function's static local variables, and it appears that waiting to acquire such a lock is why it freezes. ...
2
votes
2answers
286 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 ...
1
vote
1answer
33 views
Finding all dynamic initializations in a library
I have several large code bases which compile into dynamic libraries. I know that some of these have some very expensive dynamic global dynamic initializers. (That is, global instances of ...
1
vote
4answers
70 views
static() method (without any decleration)
Say i have the following class:
public abstract class A()
{
public static final SomeString = null;
static()
{
SomeString = "aaa";
}
}
When this static method invokes and how?
...
1
vote
3answers
71 views
Collection Initalizers in C#
In Java, I can create an List and immediately populate it using a static initializer. Something like this:
List <String> list = new ArrayList<String>()
{{
Add("a");
Add("b");
...
1
vote
1answer
186 views
C++ initialization of struct containing an array
I have a structure that more or less follows this pattern:
struct sTruct {
int count;
struct {
int A;
int B;
int C;
} array[]; //count is the size of this array
};
I ...
1
vote
4answers
514 views
cannot override static initialization in derived class
i'm trying to provide different static initializations for classes in a hierarchy, but when i tried with this code:
#include <iostream>
using namespace std;
struct base {
static const char* ...
0
votes
2answers
63 views
a better way to initialize a static array member of a class in C++ ( const would be preferred though )
I have a static array of pointers to functions as a member of a class.
I need to initialize it, but it turns out this array is 64K items long, so it's impractical to initialize it with a static ...
0
votes
2answers
76 views
Calling non-library code from an Android library
Since Android introduced library projects, I've been converting my app into a library so that I can make several versions with appropriate tweaks (for example, a free and pro version using the same ...
0
votes
1answer
67 views
@AspectJ syntax for “after() : staticinitialization(*)”
I'm trying to implement a tracing aspect using the pertypewithin instantiation model.
In this way, I'll be able to use one logger per class per type.
From some examples arround the we I can find this ...
0
votes
2answers
80 views
Global initialization in Android
I'm writing some library code distributed as a jar file that developers will need to initialize with an application id before using. Initialization is just a function call, like
...
0
votes
2answers
2k views
Spring static initialization of a bean
Hey,
how one should deal with static initializations in Spring ? I mean, my bean has a static initialization
private static final Map<String, String> exceptionMapping = ...
0
votes
3answers
263 views
Another static initialization order problem in C++
This is another variation of an old theme: The initialization order of
static objects in different translation units is not defined.
Below is a stripped-down example of my particular szenario. The
...
0
votes
1answer
83 views
Are there any guarantees in JLS about order of execution static initialization blocks?
I wonder if it's reliable to use a construction like:
private static final Map<String, String> engMessages;
private static final Map<String, String> rusMessages;
static {
engMessages ...
0
votes
1answer
137 views
Easiest way to locate a static variable in code?
I have a bug on my plate to locate and rewrite a static variable in one of our libraries that is taking up launch time in our application. I am not familiar with the library code base and am asking ...