Static Block in Java | Use, Example
When a block is declared with the static keyword, it is called static block in Java. It is a normal block of code that is enclosed in braces ({ }) and is preceded by a keyword “static”. A static block is also known as static initialization block or static initializer … Read more