Tagged Questions
The static-initializer tag has no wiki summary.
29
votes
5answers
11k views
Are Java static initializers thread safe?
I'm using a static code block to initialize some controllers in a regsitry I have. My question is therefore, can I guarantee that this static code block will only absolutely be called once when the ...
14
votes
3answers
4k views
In what order do static initializer blocks in Java run?
Say a project contains several classes, each of which has a static initializer block. In what order do those blocks run? I know that within a class, such blocks are run in the order they appear in ...
13
votes
5answers
1k views
Java enum reverse look-up best practice
I saw it suggested on a blog that the following was a reasonable way to do a "reverse-lookup" using the getCode(int) in a Java enum:
public enum Status {
WAITING(0),
READY(1),
...
13
votes
7answers
4k views
Use of Initializers vs Constructors in Java
So I've been brushing up on my Java skills as of late and have found a few bits of functionality that I didn't know about previously. Static and Instance Initializers are two such techniques.
My ...
12
votes
5answers
3k views
Static initializer in Java
My question is about one particular usage of static keyword. It is possible to use static keyword to cover a code block within a class which does not belong to any function. For example following code ...
11
votes
4answers
5k views
Exception in static initialization block
Why doesn't Java allow to throw an exception from static initialization block? What was the reason behind this design decision?
Any help would be greatly appreciated.
Thanks.
10
votes
3answers
458 views
C#: Initialization Order of Static Fields in Static Class
given the following code:
public static class Helpers
{
private static Char[] myChars = new Char[] {'a', 'b'};
private static Int32 myCharsSize = myChars.Length;
}
Is it guaranteed that ...
9
votes
4answers
179 views
Program hangs if thread is created in static initializer block
I have come across a situation where my program hangs, looks like deadlock. But I tried figuring it out with jconsole and visualvm, but they didn't detect any deadlock. Sample code:
public class ...
9
votes
5answers
540 views
Best way to force a Java class to be loaded
What is the best and cleanest way to do this? Specifically, I need some code in a static initializer block to run in that class, but I'd like to make this as clean-looking as possible.
7
votes
1answer
536 views
C++0x static initializations and thread safety
I know that as of the C++03 standard, function-scope static initializations are not guaranteed to be thread safe:
void moo()
{
static std::string cat("argent"); // not thread safe
...
}
...
6
votes
4answers
90 views
Do objects of built-in types have special static initialisation order precedence?
I'd have expected the following code to yield a segmentation fault (or otherwise UB):
struct T {
T();
};
T t;
char const* str = "Test string";
T::T() {
std::cout << str; // ...
6
votes
3answers
436 views
C code involving {}
I saw this in some C code:
Wininfo W = { sizeof(Wininfo) };
What the heck does this mean?
5
votes
5answers
496 views
How to check whether a class is initialized?
You'll probably ask, why would I want to do that - it's because I'm using a class (from an external library) which does stuff in its static initializer and I need to know whether it's been done or ...
5
votes
6answers
600 views
Use of static init block
I know how a static init block works.
Can anyone please tell me some typical uses of it.
4
votes
3answers
329 views
What does the {{ syntax on ArrayList initializer really do
I have recently found what appears to me to be a new syntax for statically initializing an ArrayList:
new ArrayList() {{
add("first");
add("second");
}};
My question is, what is really ...
4
votes
3answers
430 views
Static initialization of a struct with class members
I have a struct that's defined with a large number of vanilla char* pointers, but also an object member. When I try to statically initialize such a struct, I get a compiler error.
typedef struct
{
...
4
votes
4answers
324 views
Java newbie question: static{}?
Can someone explain me what the following is?
public class Stuff
{
static
{
try
{
Class.forName("com.mysql.jdbc.Driver");
}
catch ( ...
4
votes
6answers
922 views
Can I guarantee the order in which static initializers are run in Java?
I have a Set class (This is J2ME, so I have limited access to the standard API; just to explain my apparent wheel-reinvention). I am using my set class to create constant sets of things in classes and ...
3
votes
4answers
972 views
Invoke static initializer
Once a class is loaded is there a way to invoke static initializers again?
public class Foo {
static {
System.out.println("bar");
}
}
Edit:
I need to invoke the static initializer ...
2
votes
4answers
101 views
How can I add javadoc to a static initializer in Java?
I have refactored a class and moved some code from the constructor to a static initializer. What should I do with the javadoc that was on the constructor? Is it possible to add javadoc to a static ...
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
4answers
1k views
get static initialization block to run in a java without loading the class
I have a few classes as shown here
public class TrueFalseQuestion implements Question{
static{
QuestionFactory.registerType("TrueFalse", "Question");
}
public ...
2
votes
6answers
276 views
What benefits does main(…) provide over using a static-initializer as a pseudo entry-point?
The entry point into a program in java is typically something like this
// MyMain.java
public class MyMain{
//whatever
public static void main(String args[]){
...
1
vote
2answers
61 views
How do you disable lazy class loading/initialization in Sun's JVM?
By default, Sun's JVM both lazily loads classes and lazily initializes (i.e. calls their <clinit> methods) them. Consider the following class, ClinitBomb, which throws an Exception during a ...
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
3answers
70 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
2answers
145 views
.crt section? What does this warning mean?
I've got this warning recently (VC++ 2010)
warning LNK4210: .CRT section exists; there may be unhandled static initializers or terminators
I'm assuming this is the Critical Section. It's been a ...
1
vote
1answer
183 views
Request for the detailed description of “Static Initialization Order Fiasco”
I read about the SIOF in the faq-lite and still I really don't understand why the issue happens. I have a static library(.a) and I use that library to use its static const data member object type. ...
1
vote
1answer
95 views
Strange exception while using linq2sql
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
...
1
vote
5answers
867 views
How should I make up for the lack of static initializers in PHP?
I'm thinking about putting every class into a separate file and doing the static initialization outside of the class definition.
The problem with this is the fact that the initialization will happen ...
1
vote
4answers
526 views
Static initializers and thread synchronization (.NET)
Static initializers are supposed to be executed once before the first reference to the class. It means that every time a class is accessed, a check should be performed whether the static initializers ...
0
votes
2answers
62 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
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
7answers
87 views
Avoiding new() in initialization of static members?
The code in question is as follows:
header:
class Vec3d : public Object {
public:
static linearalgebra::Vec3d* X_AXIS;
static linearalgebra::Vec3d* Y_AXIS;
static ...
0
votes
2answers
152 views
populating map globally
I have declared the following map globally and trying to populate globally.
1: typedef std::map<unsigned short,std::pair<char,std::string>> DeviceTypeList;
2: DeviceTypeList ...
0
votes
2answers
101 views
How to do a static initialization in Cocoa
When you need to initialize a static variable in Java, you can do something like that:
public class MyClass {
private static Object someStaticObject;
static {
// initialize someStaticObject ...
0
votes
2answers
171 views
Weird singleton initialization in static function initialize during unit tests
I have a following code in my singleton class
static MySingleton *gManager;
+(void)initialize
{
if(self == [MySingleton class])
{
gManager = [[MySingleton alloc] ...
0
votes
1answer
180 views
Using constant objects in objective-c
I have a piece of code similar to this:
//Foo.h
OBJC_EXPORT MyObject *const myObj;
// Foo.m
MyObject *const myObj;
@implementation Foo
+(void) initialize
{
if (self = [Graph class])
{
...