这似乎可能是一个常见问题,但我搜索了 SO 和 Google 并找不到我正在寻找的内容:
在 Java 中调用 this
关键字的开销是多少?我知道在 C++ 中,由于取消引用当前对象指针,有一些最小的开销。 Java 是否会产生同样的开销?多次调用 this
是否不太理想。这主要是可读性与优化的问题。
最佳答案
没有任何。它们都产生完全相同的字节码。例如,这个:
package test;
public class T {
int a=0;
public T() {
System.out.println(a); //this line
}
public static void main(String[] args) {
new T();
}
}
...产生:
public class test.T {
int a;
public test.T();
Code:
0: aload_0
1: invokespecial #1 // Method java/lang/Object."<init>":()V
4: aload_0
5: iconst_0
6: putfield #2 // Field a:I
9: getstatic #3 // Field java/lang/System.out:Ljava/io/PrintStream;
12: aload_0
13: getfield #2 // Field a:I
16: invokevirtual #4 // Method java/io/PrintStream.println:(I)V
19: return
public static void main(java.lang.String[]);
Code:
0: new #5 // class test/T
3: dup
4: invokespecial #6 // Method "<init>":()V
7: pop
8: return
}
...无论标记为 的行 是否使用
a
或 this.a
。 (如果您愿意,可以尝试 - 以两种方式编译上述代码并将两个类文件与 javap -c
进行比较。)考虑到它们产生完全相同的字节码,性能上不可能存在差异。