Home > Java > javaTutorial > body text

What are the steps to read static members in Java class?

WBOY
Release: 2023-08-30 20:41:10
forward
1005 people have browsed it

What are the steps to read static members in Java class?

Static variables are created when the class is loaded or even before the static block is executed. The purpose of the static block is to assign values ​​to static variables. A static variable stores a value that is shared among all instances of the class in which it is defined, and a static block is a section of code that is executed when a class is first loaded. If we want to execute any logic on class loading, then that logic needs to be placed inside a static block to be executed on class loading.

JVM follows the following steps to execute reading static members in a class::

  • Identify static members from top to bottom
  • Execute static variables from top to bottom Assignment and static blocks.
  • Execution of main method.

Example

public class StaticFlow {
   static int firstNumber = 10;
   static {
      firstMethod();
      System.out.println("first static block");
   }
   public static void main(String[] args) {
      firstMethod();
      System.out.println("main method executed");
   }
   public static void firstMethod() {
      System.out.println(secondNumber);
   }
   static {
      System.out.println("second static block");
   }
      static int secondNumber = 20;
}
Copy after login

Output

0
first static block
second static block
20
main method executed
Copy after login

The above is the detailed content of What are the steps to read static members in Java class?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!