Java / static keyword
What is a static block?
A static block, is a block of code inside a Java class that will be executed when a class is first loaded into the JVM. Mostly the static block will be used for initializing the variables.
Static block will be called only one while loading and it cannot have any return type, or any keywords (this or super).
It is also called as Initializer block.
class MyClass { static int val; static{ val = 100; } }
More Related questions...