The static-initialization tag has no wiki summary.
0
votes
1answer
527 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 ...
5
votes
2answers
287 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;
...
2
votes
3answers
542 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 ...
0
votes
2answers
355 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
...
4
votes
2answers
219 views
static member explicit definition
Consider this code:
#include<iostream>
using namespace std;
class Wilma
{
public:
static int i;
Wilma()
{
cout<<"\nWilma ctor\n";
...
11
votes
4answers
892 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;
};
...
2
votes
1answer
211 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?
...
3
votes
3answers
827 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
6answers
2k 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 ...
7
votes
2answers
7k 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 ...
7
votes
2answers
3k 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
510 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 = ...
1
vote
1answer
555 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 ...
3
votes
1answer
819 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 ...
0
votes
2answers
7k 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 = ...
1
vote
5answers
2k 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
3answers
578 views
Static initialization order issue 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 scenario. The
...
2
votes
3answers
238 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 ...
3
votes
3answers
551 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
176 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 ...
14
votes
7answers
3k 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 ...
2
votes
3answers
1k 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;
...
3
votes
2answers
745 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. ...
6
votes
7answers
5k 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?
0
votes
1answer
190 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 ...
8
votes
3answers
274 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 ...
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 ...
