大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
我有这个字节码:
new java.lang.Object
// stack is [newObjectRef]
dup
// Stack is [newObjectRef newObjectRef]
invokespecial void java.lang.Object.()
// Stack is [initializedAsTypeObjectObjectRef]
putstatic java.lang.Object class.a
// variable a has the reference of new object
getstatic java.io.PrintStream java.lang.System.out
// Take the static value of System.out
// Stack is [initializedAsTypeObjectObjectRef System.out]
更新这是继续:
> ldc “test” // Stack is
> [initializedAsTypeObjectObjectRef System.out “test”]
> jsr pos.0000026C // call a subrutine invokevirtual void
> java.io.PrintStream.println(java.lang.String) // actually print the
> result // stack is (I think) Empty at this time ?
翻译是:
Object a = new Object();
a = “test”;
System.out.print(a);
我的筹码好吗?
我不太清楚().
可能我将不得不使用out()setter和print()之后?
我总是习惯用out()打印..
解决方法:
如果我编译代码
public static void main(String[] args) {
Object a;
a = “test”;
System.out.println(a);
}
并运行
javap -c Main
我知道了
public static void main(java.lang.String[]);
Code:
0: ldc #2 // String test
2: astore_1
3: getstatic #3 // Field java/lang/System.out:Ljava/io/PrintStream;
6: aload_1
7: invokevirtual #4 // Method java/io/PrintStream.println:(Ljava/lang/Object;)V
10: return
您可以看到getstatic加载字段System.out
对象没有一个名为out()的方法,所以我不相信你在看你认为的代码.
getstatic获取静态字段,例如System.out是System的静态字段,所以如果你写的话
System.out.println();
这将导致使用getstatic
标签:java,bytecode
来源: https://codeday.me/bug/20190630/1335942.html
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/179147.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...