翻译:JVM虚拟机规范1.7中的运行时常量池部分(三)
4.4.7. The CONSTANT_Utf8_info Structure
The CONSTANT_Utf8_info structure is used to represent constant string values:
代表常量字符串。

The items of the CONSTANT_Utf8_info structure are as follows:
条目如下:
- tag
-
The
tagitem of theCONSTANT_Utf8_infostructure has the valueCONSTANT_Utf8(1).tag值为
CONSTANT_Utf8 - length
-
The value of the
lengthitem gives the number of bytes in thebytesarray (not the length of the resulting string).bytes数组的长度
- bytes[]
-
The
bytesarray contains the bytes of the string.No byte may have the value
(byte)0.No byte may lie in the range
(byte)0xf0to(byte)0xff.该数组包含字符串的字节。
不能包含0.
不能在
0xf0到(byte)0xff.范围内
String content is encoded in modified UTF-8. Modified UTF-8 strings are encoded so that code point sequences that contain only non-null ASCII characters can be represented using only 1 byte per code point, but all code points in the Unicode codespace can be represented. Modified UTF-8 strings are not null-terminated. The encoding is as follows:
翻译:字符串内容以修改后的UTF-8编码。修改版UTF-8编码后,仅包含非空ASCII字符的码点序列能够用(每个码点一个1字节)来标识,但是所有的Unicode代码段中的码点能够被标识。
- Code points in the range '
\u0001' to '\u007F' are represented by a single byte:

The 7 bits of data in the byte give the value of the code point represented.
翻译:'\u0001' to '\u007F' 用单字节标识
- The null code point ('
\u0000') and code points in the range '\u0080' to '\u07FF' are represented by a pair of bytesxandy:

The two bytes represent the code point with the value:

翻译:空码点('\u0000') 和 '\u0080' to '\u07FF' 范围内的可以用x和y来标识,然后通过上面的公式代入x和y的值来算出码点。(类似于2字节编码的那部分UTF-8)
Code points in the range '
\u0800' to '\uFFFF' are represented by 3 bytesx,y, andz:

翻译: '\u0800' to '\uFFFF' 用三字节编码,用x、y、z三字节来编码。
- Characters with code points above U+FFFF (so-called supplementary characters) are represented by separately encoding the two surrogate code units of their UTF-16 representation. Each of the surrogate code units is represented by three bytes. This means supplementary characters are represented by six bytes,
u,v,w,x,y, andz:


The bytes of multibyte characters are stored in the class file in big-endian (high byte first) order.
There are two differences between this format and the "standard" UTF-8 format. First, the null character (char)0 is encoded using the 2-byte format rather than the 1-byte format, so that modified UTF-8 strings never have embedded nulls. Second, only the 1-byte, 2-byte, and 3-byte formats of standard UTF-8 are used. The Java Virtual Machine does not recognize the four-byte format of standard UTF-8; it uses its own two-times-three-byte format instead.
For more information regarding the standard UTF-8 format, see Section 3.9 Unicode Encoding Forms of The Unicode Standard, Version 6.0.0.
翻译:6字节编码?多字符的字节存储在class文件中,大端序。
该编码和标准utf-8有两个差别。第一,空字符0用了2字节编码而不是1字节,因此修改后的UTF8字符串没有null值。第二,标准utf8中1,2,3字节格式的编码被支持。java虚拟机不识别4字节的编码;因此使用了6字节格式代替。
4.4.8. The CONSTANT_MethodHandle_info Structure
The CONSTANT_MethodHandle_info structure is used to represent a method handle:

The items of the CONSTANT_MethodHandle_info structure are the following:
- tag
-
The
tagitem of theCONSTANT_MethodHandle_infostructure has the valueCONSTANT_MethodHandle(15).值为CONSTANT_MethodHandle
- reference_kind
-
The value of the
reference_kinditem must be in the range 1 to 9. The value denotes the kind of this method handle, which characterizes its bytecode behavior (§5.4.3.5).值必须为1-9.它的值标识了这个方法处理的类型?
- reference_index
-
The value of the
reference_indexitem must be a valid index into theconstant_pooltable. Theconstant_poolentry at that index must be as follows:If the value of the
reference_kinditem is 1 (REF_getField), 2 (REF_getStatic), 3 (REF_putField), or 4 (REF_putStatic), then theconstant_poolentry at that index must be aCONSTANT_Fieldref_info(§4.4.2) structure representing a field for which a method handle is to be created.If the value of the
reference_kinditem is 5 (REF_invokeVirtual) or 8 (REF_newInvokeSpecial), then theconstant_poolentry at that index must be aCONSTANT_Methodref_infostructure (§4.4.2) representing a class's method or constructor (§2.9) for which a method handle is to be created.If the value of the
reference_kinditem is 6 (REF_invokeStatic) or 7 (REF_invokeSpecial), then if theclassfile version number is less than 52.0, theconstant_poolentry at that index must be aCONSTANT_Methodref_infostructure representing a class's method for which a method handle is to be created; if theclassfile version number is 52.0 or above, theconstant_poolentry at that index must be either aCONSTANT_Methodref_infostructure or aCONSTANT_InterfaceMethodref_infostructure (§4.4.2) representing a class's or interface's method for which a method handle is to be created.If the value of the
reference_kinditem is 9 (REF_invokeInterface), then theconstant_poolentry at that index must be aCONSTANT_InterfaceMethodref_infostructure representing an interface's method for which a method handle is to be created.
If the value of the
reference_kinditem is 5 (REF_invokeVirtual), 6 (REF_invokeStatic), 7 (REF_invokeSpecial), or 9 (REF_invokeInterface), the name of the method represented by aCONSTANT_Methodref_infostructure or aCONSTANT_InterfaceMethodref_infostructure must not be<init>or<clinit>.If the value is 8 (
REF_newInvokeSpecial), the name of the method represented by aCONSTANT_Methodref_infostructure must be<init>.
翻译:reference_index 值必须是有效索引。指向的值可以是如下:
如果reference_kind 是1(REF_getField), 2 (REF_getStatic), 3 (REF_putField), or 4 (REF_putStatic), 那么值必须为CONSTANT_Fieldref_info,代表一个将要为方法handle创建的域
如果 reference_kind item是 5 (REF_invokeVirtual) 或者8 (REF_newInvokeSpecial),那么值为CONSTANT_Methodref_info ,代表一个类的方法或者构造函数
如果 reference_kind item 是6 (REF_invokeStatic) 或者7 (REF_invokeSpecial), 那么class文件的版本号小于52.0,值为CONSTANT_Methodref_info ,代表一个类的方法;如果版本号大于52,那么要么是一个CONSTANT_Methodref_info ,要么 是aCONSTANT_InterfaceMethodref_info ,代表一个类或者接口的方法。
如果 reference_kind item 是9 (REF_invokeInterface),那么值须为CONSTANT_InterfaceMethodref_info ,标识一个接口的方法。
4.4.9. The CONSTANT_MethodType_info Structure
The CONSTANT_MethodType_info structure is used to represent a method type:
代表一个方法类型

The items of the CONSTANT_MethodType_info structure are as follows:
- tag
-
The
tagitem of theCONSTANT_MethodType_infostructure has the valueCONSTANT_MethodType(16). - descriptor_index
-
The value of the
descriptor_indexitem must be a valid index into theconstant_pooltable. Theconstant_poolentry at that index must be aCONSTANT_Utf8_infostructure (§4.4.7) representing a method descriptor (§4.3.3).翻译:值须指向
CONSTANT_Utf8_info,标识一个方法描述符
4.4.10. The CONSTANT_InvokeDynamic_info Structure
The CONSTANT_InvokeDynamic_info structure is used by an invokedynamic instruction (§invokedynamic) to specify a bootstrap method, the dynamic invocation name, the argument and return types of the call, and optionally, a sequence of additional constants called static arguments to the bootstrap method.
翻译:被invokedynamic 使用,指定一个启动方法,或者动态调用名,参数和返回类型,静态参数(可选)

The items of the CONSTANT_InvokeDynamic_info structure are as follows:
- tag
-
The
tagitem of theCONSTANT_InvokeDynamic_infostructure has the valueCONSTANT_InvokeDynamic(18). - bootstrap_method_attr_index
-
The value of the
bootstrap_method_attr_indexitem must be a valid index into thebootstrap_methodsarray of the bootstrap method table (§4.7.23) of thisclassfile.须为本class文件中启动方法表的
bootstrap_methods数组中有效索引 - name_and_type_index
-
The value of the
name_and_type_indexitem must be a valid index into theconstant_pooltable. Theconstant_poolentry at that index must be aCONSTANT_NameAndType_infostructure (§4.4.6) representing a method name and method descriptor (§4.3.3).必须为
CONSTANT_NameAndType_info类型,代表一个方法名和方法描述符
翻译:JVM虚拟机规范1.7中的运行时常量池部分(三)的更多相关文章
- 翻译:JVM虚拟机规范1.7中的运行时常量池部分(二)
本篇为JVM虚拟机规范1.7中的运行时常量池部分系列的第二篇. 4.4.4. The CONSTANT_Integer_info and CONSTANT_Float_info Structures ...
- 翻译:JVM虚拟机规范1.7中的运行时常量池部分(一)
原文链接: https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html#jvms-4.4 Java Virtual Machine i ...
- 类的加载,链接和初始化——1运行时常量池(来自于java虚拟机规范英文版本+本人的翻译和理解)
加载(loading):通过一个特定的名字,找到类或接口的二进制表示,并通过这个二进制表示创建一个类或接口的过程. 链接:是获取类或接口并把它结合到JVM的运行时状态中,以让类或接口可以被执行 初始化 ...
- 深入理解JVM虚拟机:(一)Java运行时数据区域
概述 JVM是Java语言的精髓所在,因为它Java语言实现了跨平台运行,以及自动内存管理机制等,本文将从概念上介绍JVM内存的各个区域,说明个区域的作用. JVM运行时数据区模型 Java虚拟机在执 ...
- JVM笔记3-java内存区域之运行时常量池
1.运行时常量池属于线程共享区中的方法区. 2.运行时常量池用于编译期生成的各种自变量,符号引用,这部分内用将在类加载后接入方法区的运行时常量池中存放. 看如下代码所示,如图: public clas ...
- 对JVM运行时常量池的一些理解
1.JVM运行时常量池在内存的方法区中(在jdk8中,移除了方法区) 2.JVM运行时常量池中的内容主要是从各个类型的class文件的常量池中获取,对于字符串常量,可以调用intern方法人为添加,而 ...
- JVM详解之:运行时常量池
目录 简介 class文件中的常量池 运行时常量池 静态常量详解 String常量 数字常量 符号引用详解 String Pool字符串常量池 总结 简介 JVM在运行的时候会对class文件进行加载 ...
- 运行时常量池中的符号引用/String.intern() /ldc指令
运行时常量池,之前放在方法区(永久代)中,1.8之后被转移到元空间,放到了native memory中. 具体的数据结构是:(看对象的内存布局,句柄访问还是对象头中保存指向类的元数据的指针,这里以对象 ...
- JVM 常量池、运行时常量池、字符串常量池
常量池: 即class文件常量池,是class文件的一部分,用于保存编译时确定的数据. 保存的内容如下图: D:\java\test\out\production\test>javap -ver ...
随机推荐
- Socket之心跳包实现思路
由于最近要做一个客户端,但是要求有一个掉线检测的功能,下面让我们看看使用自定义的HeartBeat方式来检测客户端的连接情况. 心跳包的实现思路: 客户端连接上服务端后,在服务端会维护一个在线客户端列 ...
- pycharm中的光标变粗的问题
pycharm中的光标变粗后不能自动打成对的小括号和中括号及引号---->解决办法:按下insert键 按下:insert键进行切换
- 原生js+canvas实现滑动拼图验证码
上图为网易云盾的滑动拼图验证码,其应该有一个专门的图片库,裁剪的位置是固定的.我的想法是,随机生成图片,随机生成位置,再用canvas裁剪出滑块和背景图.下面介绍具体步骤. 首先随便找一张图片渲染到c ...
- 剑指Offer-孩子们的游戏(圆圈中最后剩下的数)
package Other; import java.util.LinkedList; /** * 孩子们的游戏(圆圈中最后剩下的数) * 每年六一儿童节,牛客都会准备一些小礼物去看望孤儿院的小朋友, ...
- push_back和emplace_back的区别
emplace_back能就地通过参数构造对象,不需要拷贝或者移动内存,相比push_back能更好地避免内存的拷贝与移动,使容器插入元素的性能得到进一步提升.在大多数情况下应该优先使用emplace ...
- 17.C++-string字符串类(详解)
C++字符串string类 在C语言里,字符串是用字符数组来表示的,而对于应用层而言,会经常用到字符串,而继续使用字符数组,就使得效率非常低. 所以在C++标准库里,通过类string从新自定义了字符 ...
- 从分布式一致性到共识机制(一)Paxos算法
从分布式系统的CAP理论出发,关注分布式一致性,以及区块链的共识问题及解决. 区块链首先是一个大规模分布式系统,共识问题本质就是分布式系统的一致性问题,但是又有很大的不同.工程开发中,认为系统中存在故 ...
- Day2------字符编码
复习: 系统启动流程:bios------->找到启动介质---------->把系统加载到内存------------>CPU执行 字符编码 一.字符串------------&g ...
- Java中的懒汉式单例与饿汉式单例实例详解
懒汉式单例:线程非安全,当被调用的时候才创建实例,效率较高 public class LazySingleton { private static LazySingleton lazySingleto ...
- 【ASP.NET Core】如何隐藏响应头中的 “Kestrel”
全宇宙人民都知道,ASP.NET Core 应用是不依赖服务器组件的,因此它可以独立运行,一般是使用支持跨平台的 Kestrel 服务器(当然,在 Windows 上还可以考虑用 HttpSys,但要 ...