search
HomeJavajavaTutorialDetailed graphic and text explanation of class file format in Java
Detailed graphic and text explanation of class file format in JavaJun 18, 2017 am 09:45 AM
classjavaGraphics and textdocumentFormat

For understanding the JVM and in-depth understanding of the Java language, learning and understanding the format of the class file is a must-have homework

The position and role of the Class file in the Java architecture

For understanding the JVM and in-depth understanding of the Java language, learning and understanding the format of class files are all tasks that must be mastered. The reason is very simple. The JVM will not understand the Java source files we write. We must compile the Java source files into class files before they can be recognized by the JVM. For the JVM, the class file is equivalent to an interface. Understanding this interface can help We better understand the behavior of the JVM; on the other hand, the class file re-describes the meaning we want to express in the source file in another way. Understanding how the class file re-describes the source file we wrote, for an in-depth understanding of the Java language and grammar are very helpful. In addition, no matter what language it is, as long as it can be compiled into a class file, it can be recognized and executed by the JVM. Therefore, the class file is not only the basis of cross-platform, but also the basis of JVM cross-language. Understanding the class file format is essential for us to learn based on JVM of other languages ​​would be of great help.

In short, in the entire Java technology architecture, class files are in the middle and play a connecting role in understanding the entire system. As shown in the figure:

Class file format overview

class file is a An 8-bit binary stream file, each data item is arranged in a tight order from front to back, with no gaps between adjacent items. This makes the class file very compact, lightweight, and can be quickly loaded into memory by the JVM. And takes up less memory space. After our Java source files are compiled, each class (or interface) occupies a separate class file, and all information in the class will be described accordingly in the class file. Because class files are very flexible, they are even more flexible than Java source files have stronger description capabilities.

The information in the class file is arranged one by one. Each piece of data has its fixed length. Some occupies one byte, some occupies two bytes, and some occupies four. byte or 8 bytes, the different lengths of the data items are represented by u1, u2, u4, u8 respectively, which respectively indicate that a data item occupies one byte, two bytes, 4 bytes and 8 in the class file. bytes. You can think of u1, u2, u3, and u4 as the "types" of class file data items. The following data items exist in the

class file (this chart is referenced from "In-depth Java Virtual Machine"):

magic

type name

Quantity

##u4

1

u2

minor_version

1

u2

major_version

1

u2

constant_pool_count

1

cp_info

constant_pool

constant_pool_count - 1

u2

access_flags

1

u2

this_class

1

u2

super_class

1

u2

interfaces_count

1

u2

interfaces

interfaces_count

u2

fields_count

1

field_info

fields

fields_count

u2

methods_count

1

method_info

methods

methods_count

u2

attribute_count

1

attribute_info

attributes

attributes_count


The following is a detailed explanation of each item in the class file.

The magic number and version number in the class file

(1) magic

is at the beginning of the class file The four bytes store the magic number of the class file. This magic number is the symbol of the class file. It is a fixed value: 0XCAFEBABE. In other words, it is the standard for judging whether a file is in class format. If the first four bytes are not 0XCAFEBABE, it means that it is not a class file and cannot be recognized by the JVM.

(2) minor_version and major_version

The four bytes following the magic number are the version number and major version number of the class file. As Java develops, the format of class files will also undergo corresponding changes. The version number indicates when the class file was added or changed. For example, the version numbers of class files compiled by different versions of javac compilers may be different, and the version numbers of class files recognized by different versions of JVM may also be different. In general, a higher version of the JVM can recognize a lower version of the class file. The class files compiled by the javac compiler, but the lower version of the JVM cannot recognize the class files compiled by the higher version of the javac compiler. If a lower version of the JVM is used to execute a higher version of the class file, the JVM will throw java.lang.UnsupportedClassVersionError. The specific version number changes will not be discussed here, and readers in need can consult the information by themselves.

Constants in the class filePool overview

In the class file, the constant pool is located after the version number related data items. The constant pool is a very important piece of data in the class file. The constant pool stores text string, constant value, class name of the current class, field name, method name, descriptors of each field and method, reference information to the fields and methods of the current class, current Reference information to other classes in the class, etc. The constant pool contains descriptions of almost all the information in the class. Many other parts in the class file are references to data items in the constant pool, such as this_class, super_class, field_info, attribute_info, etc. to be discussed later. In addition, bytes There is also a reference to the constant pool in the code instruction. This reference to the constant pool is used as an operand of the bytecode instruction. In addition, each item in the constant pool will also refer to each other.

The value of the item constant_pool_count in the class file is 1, indicating that each class has only one constant pool. The data in the constant pool are also discharged one by one without gaps. Each data item in the constant pool is accessed through index, which is somewhat similar to an array, except that the index of the first item in the constant pool is 1, not 0. If it is referenced elsewhere in the class file A constant pool item with index 0 means that it does not reference any constant pool item. Each data item in the class file has its own type. In the same way, each data item in the constant pool also has its own type. The types of data items in the constant pool are as follows:

##3CONSTANT_FloatCONSTANT_LongCONSTANT_Double CONSTANT_ClassCONSTANT_String CONSTANT_Fieldref CONSTANT_MethodrefCONSTANT_InterfaceMethodrefCONSTANT_NameAndType

Types of data items in the constant pool

Type flag

Type description

##CONSTANT_Utf8

1

UTF-8 encoded Unicode string

CONSTANT_

Integer

##int type literal

4

##float type literal value

5

long type literal

6

double type literal

7

A symbolic reference to a class or interface

8

String type literal value

9

A symbolic reference to a field

10

A symbolic reference to a method declared in a class

11

A symbolic reference to a method declared in an interface

12

Partial symbolic reference to a field or method

Each data item is called a XXX_info item. For example, an item of type CONSTANT_Utf8 in a constant pool is a CONSTANT_Utf8_info. In addition, each info item has a flag value (tag). This flag value indicates the type of the info item in this constant pool, as can be seen from the Table above. , the tag value in a CONSTANT_Utf8_info is 1, and the tag value in a CONSTANT_Fieldref_info is 9.

Java programs are dynamically linked. In the implementation of dynamic linking, the constant pool plays a pivotal role. In addition to storing some literals, the constant pool also stores the following symbolic references:

(1) The fully qualified names of classes and interfaces

(2 ) Field names and descriptors

(3) Method names and descriptors

Before explaining each data item in the constant pool in detail, we need to first Learn about the special characters strings in the class file, because in the constant pool, special strings appear in large numbers. These special strings are the fully qualified names and descriptors mentioned above. To understand each data item in the constant pool, you must first understand these special strings.

The above is the detailed content of Detailed graphic and text explanation of class file format in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
Python中的class类和method方法的使用方法Python中的class类和method方法的使用方法Apr 21, 2023 pm 02:28 PM

类和方法的概念和实例类(Class):用来描述具有相同的属性和方法的对象的集合。它定义了该集合中每个对象所共有的属性和方法。对象是类的实例。方法:类中定义的函数。类的构造方法__init__():类有一个名为init()的特殊方法(构造方法),该方法在类实例化时会自动调用。实例变量:在类的声明中,属性是用变量来表示的,这种变量就称为实例变量,实例变量就是一个用self修饰的变量。实例化:创建一个类的实例,类的具体对象。继承:即一个派生类(derivedclass)继承基类(baseclass)的

使用jQuery替换元素的class名称使用jQuery替换元素的class名称Feb 24, 2024 pm 11:03 PM

jQuery是一种经典的JavaScript库,被广泛应用于网页开发中,它简化了在网页上处理事件、操作DOM元素和执行动画等操作。在使用jQuery时,经常会遇到需要替换元素的class名的情况,本文将介绍一些实用的方法,以及具体的代码示例。1.使用removeClass()和addClass()方法jQuery提供了removeClass()方法用于删除

python中class是什么意思python中class是什么意思May 21, 2019 pm 05:10 PM

class是python中的一个关键字,用来定义一个类,定义类的方法:class后面加一个空格然后加类名;类名规则:首字母大写,如果多个单词用驼峰命名法,如【class Dog()】。

SpringBoot怎么通过自定义classloader加密保护class文件SpringBoot怎么通过自定义classloader加密保护class文件May 11, 2023 pm 09:07 PM

背景最近针对公司框架进行关键业务代码进行加密处理,防止通过jd-gui等反编译工具能够轻松还原工程代码,相关混淆方案配置使用比较复杂且针对springboot项目问题较多,所以针对class文件加密再通过自定义的classloder进行解密加载,此方案并不是绝对安全,只是加大反编译的困难程度,防君子不防小人,整体加密保护流程图如下图所示maven插件加密使用自定义maven插件对编译后指定的class文件进行加密,加密后的class文件拷贝到指定路径,这里是保存到resource/corecla

PHP Class用法详解:让你的代码更清晰易读PHP Class用法详解:让你的代码更清晰易读Mar 10, 2024 pm 12:03 PM

在编写PHP代码时,使用类(Class)是一个非常常见的做法。通过使用类,我们可以将相关的功能和数据封装在一个单独的单元中,使代码更加清晰、易读和易维护。本文将详细介绍PHPClass的用法,并提供具体的代码示例,帮助读者更好地理解如何在实际项目中应用类来优化代码。1.创建和使用类在PHP中,可以使用关键字class来定义一个类,并在类中定义属性和方法。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

java的预定义Class对象的方法java的预定义Class对象的方法Jul 01, 2023 pm 06:41 PM

基本的Java类型(boolean、byte、char、short、int、long、float和double)和关键字void通过class属性也表示为Class对象;Class类中booleanisPrimitive():判定指定的Class对象是否表示一个基本类型。包装类和Void类的静态TYPE字段;Integer.TYPE==int.class;Integer.class==int.class;数组类型的Class实例对象:Classclz=String[].class;数组的Clas

Vue报错:无法正确使用v-bind绑定class和style,怎样解决?Vue报错:无法正确使用v-bind绑定class和style,怎样解决?Aug 26, 2023 pm 10:58 PM

Vue报错:无法正确使用v-bind绑定class和style,怎样解决?在Vue开发中,我们经常会用到v-bind指令来动态绑定class和style,但是有时候我们可能会遇到一些问题,如无法正确使用v-bind绑定class和style。在本篇文章中,我将为你解释这个问题的原因,并提供解决方案。首先,让我们先了解一下v-bind指令。v-bind用于将V

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor