我有以下Java类:
public class Test {
public static void main(String[] args) {
if (false) {
log("String_to_be_never_printed_1");
}
if (isPrintable()) {
log("String_to_be_never_printed_2");
}
}
private static boolean isPrintable() {
return false;
}
private static void log(String s) {
System.out.println(s);
}
}
在这两个 if 语句中,结果都是错误的。当我为这个类输出常量池表时,我得到:
Constant pool:
#1 = Class #2 // Test
#2 = Utf8 Test
....
#18 = Utf8 isPrintable
#19 = Utf8 ()Z
#20 = String #21 // String_to_be_never_printed_2
#21 = Utf8 String_to_be_never_printed_2
#22 = Methodref #1.#23 // Test.log:(Ljava/lang/String;)V
#23 = NameAndType #24:#25 // log:(Ljava/lang/String;)V
...
String_to_be_never_printed_2 存在 (#20),此时 String_to_be_never_printed_1 无处可见。这是预期的,因为编译器优化了第一个 if 语句。
我的问题是虚拟机是否会设法从常量池中删除 String_to_be_never_printed_2 (因为这永远不会被使用)?