Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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

What is Scala equivalent of Java's static block?

What is Scala equivalent of Java's static block ?
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
255 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 ...
1
vote
1answer
35 views

Dalvik classloader mystery

I am on Adnroid 2.2 SDK and could not get my static block inside MultiUserChat class to execute. I have tried to force load it as try { String qual = MultiUserChat.class.getName(); ...
0
votes
1answer
72 views

No CSS when using static block in CMS page in magento

I have a static block as part of a theme that works perfectly on the homepage - but when I add the static block to any other page it displays differently. Basically the CSS doesn't follow the block ...