Tagged Questions
0
votes
6answers
67 views
Constructors called due to static initialization
I am going through Thinking in Java by Bruce Eckel 4th Edition. In the chapter Initialization & Cleanup, page : 189 the first bullet point in the second para mentions:
Even though it doesn't ...
6
votes
3answers
185 views
Static Initialization in Go?
I'm currently working on the Go Lang tutorial, but ran into problem with one of the exercises:
http://tour.golang.org/#60
The exercise has me implement a ROT13 cipher. I decided to implement the ...
10
votes
2answers
123 views
Application-wide configuration of Lambdaj FinalClassArgumentCreators. Where and how to do it?
We have a problem with configuring lambdaj to work with Joda Time. Since LocalDate is a final class, Lambdaj needs to be initialized like following: (see bug 70)
public class LocalDateArgumentCreator ...
39
votes
2answers
1k views
Why isn't a qualified static final variable allowed in a static initialization block?
Case 1 :
class Program {
static final int var;
static {
Program.var = 8; // Compilation error
}
public static void main(String[] args) {
int i;
...
8
votes
5answers
141 views
java static initialization with inheritance
public class Main {
public static void main(String[] args) {
System.out.println(B.x);
}
}
class A {
public static String x = "x";
}
class B ...
2
votes
1answer
286 views
Initialization order of static data inside class template
// File: InitFirst.h
#pragma once
template <int val>
struct InitFirst
{
static float s_dividedByThree;
};
template <int val>
float InitFirst<val>::s_dividedByThree = val / ...
1
vote
6answers
540 views
Java - static initialization
I have written a piece of code :
public class Child{
int y ;
private static final int z = getZ();
static {
System.out.println("The value of z is "+z);
}
public int getX(){
...
1
vote
4answers
122 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?
...
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;
...
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?
...
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 = ...
