Tagged Questions
8
votes
8answers
6k views
Mocking Static Blocks in Java
My motto for Java is "just because Java has static blocks, it doesn't mean that you should be using them." Jokes aside, there are a lot of tricks in Java that make testing a nightmare. Two of the most ...
7
votes
1answer
866 views
6
votes
3answers
1k views
Is a Java static block equivalent to a C# static constructor?
What is the real difference between a C# static constructor and a Java static block?
They both must be parameterless.
They are both called only once, when the related class is first used.
Am I ...
3
votes
4answers
257 views
Static Block and Main Thread
I found a very interesting thing while trying with java. Please find the code below:
public class SimpleTest {
static{
System.out.println(Thread.currentThread().getName());
...
3
votes
2answers
107 views
How to detect time of ClassLoading
I have a TrirdParty API that contains a CLass [let's say A]. It has a bizarre static block similar to the following:
class A
{
static
{
try
{
...
2
votes
3answers
66 views
What does “When a Class is loaded” actually mean?
It is said that static blocks in java run only once when that class is loaded. But what does it actually mean? At which point is a class loaded by JVM (Java Virtual Machine)?
Is it when the main ...
2
votes
1answer
97 views
Question about singleton property
I'm reading the java tutorial for enums located here and have a question: http://java.sun.com/j2se/1.5.0/docs/guide/language/enums.html#Card
The part i'm confused about is as follows:
"The Card ...