java virtual machine (7) --- class loader process one: loading

java virtual machine (7)-class loader process one: loading

  1. loading
    Insert picture description here
    (1) Obtain the binary bytecode that defines this class through the fully qualified name of a class
    (2) Convert the static storage structure represented by the byte stream into the runtime data structure of the method area
    (3) Generate in memory A java.lang.Class object representing this class serves as the access entry for various data of this class in the method area
  2. The way to load .class
    Insert picture description here

》》》Bloggers update their learning experience for a long time, recommend likes and follow! ! !
》》》If there is something wrong, please leave a message in the comment area, thank you! ! !

Guess you like

Origin blog.csdn.net/qq_41622739/article/details/105023371