Skip to content

Latest commit

 

History

History
6 lines (2 loc) · 230 Bytes

Java - Static Blocks.md

File metadata and controls

6 lines (2 loc) · 230 Bytes

Java - Static Blocks

Static block (or static clause) can be used for static initializations of a class. The code inside static block is executed only once: the first time the class is loaded into memory.