假设以下2个程序:
public class Main {
private static boolean test= false;
public static void main(String[] args) {
if(test)
method1();
}
private static void method1() {
//Some stuff
method2();
}
private static void method2() {
//Some stuff
}
}
public class Main {
private final static boolean test= false;
public static void main(String[] args) {
if(test)
method1();
}
private static void method1() {
//Some stuff
method2();
}
private static void method2() {
//Some stuff
}
}
对于第二个,我会说编译器不会为bytecode
和method1()
生成method2()
,因为test
是final
并设置为false
。
第一种情况会产生bytecode
吗?如果有,为什么?
编辑:
第一个编译器输出:
public class Main extends java.lang.Object{
static{};
Code :
0: iconst_0
1: putstatic #10; //Field test:Z
4: return
public Main();
Code :
0: aload_0
1: invokespecial #15; //Method java/lang/Object."<init>":<>V
4: return
public static void main(java.lang.String[]);
Code :
0: getstatic #10; //Field test:Z
3: ifeq 9
6: invokestatic #21; //Method method1:()V
9: return
第二个编译器输出:
public class Main extends java.lang.Object{
public Main();
Code :
0: aload_0
1: invokespecial #12; //Method java/lang/Object."<init>":<>V
4: return
public static void main(java.lang.String[]);
Code :
0: return
答案 0 :(得分:1)
简单回答:当然,它会为两个示例中的两种方法生成字节代码。如果你快速编译这两个类并在之后对这些类进行反编译,你会发现一切都存在。
但是,如果使用混淆器,则可能会有所不同。
干杯!