没有合适的资源?快使用搜索试试~ 我知道了~
详解Java常量池.docx
资源推荐
资源详情
资源评论
class 常量池
存放编译期生成的各种字面量(Literal)和符号引用(SymbolicReferences)
源码
package com.example.jvm;
public class Person {
private String name;
private int age;
}
javap -v Person.class
Last modified 2022-11-22; size 329 bytes
MD5 checksum e93eb70b145ea28f25337f23d45f5307
Compiled from "Person.java"
public class com.example.jvm.Person
minor version: 0
major version: 52
flags: ACC_PUBLIC, ACC_SUPER
Constant pool:
#1 = Methodref #3.#17 // java/lang/Object."<init>":()V
#2 = Class #18 // com/example/jvm/Person
#3 = Class #19 // java/lang/Object
#4 = Utf8 name
#5 = Utf8 Ljava/lang/String;
#6 = Utf8 age
#7 = Utf8 I
#8 = Utf8 <init>
#9 = Utf8 ()V
#10 = Utf8 Code
#11 = Utf8 LineNumberTable
#12 = Utf8 LocalVariableTable
#13 = Utf8 this
#14 = Utf8 Lcom/example/jvm/Person;
#15 = Utf8 SourceFile
#16 = Utf8 Person.java
#17 = NameAndType #8:#9 // "<init>":()V
#18 = Utf8 com/example/jvm/Person
#19 = Utf8 java/lang/Object
{
public com.example.jvm.Person();
descriptor: ()V
flags: ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
0: aload_0
1: invokespecial #1 // Method java/lang/Object."<init>":()V
4: return
LineNumberTable:
line 3: 0
LocalVariableTable:
Start Length Slot Name Signature
0 5 0 this Lcom/example/jvm/Person;
}
剩余6页未读,继续阅读
资源评论
九转成圣
- 粉丝: 5163
- 资源: 2961
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功