in Education by

What is the static block?

Please log in or register to answer this question.

1 Answer

0 votes
by

Static block is used to initialize the static data member. It is executed before the main method, at the time of classloading. class A2{ static{System.out.println("static block is invoked");} public static void main(String args[]){ System.out.println("Hello main"); } } Test it Now Output: static block is invoked Hello main

Related questions

...