简单if语句与普通if语句

rac*_*orm 6 java performance if-statement bytecode curly-braces

在Java字节代码级别,简单的if语句(示例1)和普通的if语句(示例2)之间是否有任何区别:

例1:

if (cond) statement;
Run Code Online (Sandbox Code Playgroud)

例2:

if (cond) {
    statement;
}
Run Code Online (Sandbox Code Playgroud)

问题的背景是,我在"高性能"类中看到过,java.awt.Rectangle而且Point只看到没有花括号的变体.

是否有任何速度优势,或者只是代码风格?

dre*_*ash 10

除了代码的可维护性外,在性能方面也完全相同.你不会从删除中获得加快{},因为{}它不是自己的指令.

我正常使用{}因为使代码易于阅读(IMO)并且不太有利于犯错误.

这个例子:

public void A(int i) {
     if (i > 10) {
        System.out.println("i");
        }
    }

    public void B(int i) {
        if (i > 10)
            System.out.println("i");
    }
Run Code Online (Sandbox Code Playgroud)

生成的字节码:

 // Method descriptor #15 (I)V
  // Stack: 2, Locals: 2
  public void A(int i);
     0  iload_1 [i]
     1  bipush 10
     3  if_icmple 14
     6  getstatic java.lang.System.out : java.io.PrintStream [16]
     9  ldc <String "i"> [22]
    11  invokevirtual java.io.PrintStream.println(java.lang.String) : void [24]
    14  return
      Line numbers:
        [pc: 0, line: 5]
        [pc: 6, line: 6]
        [pc: 14, line: 8]
      Local variable table:
        [pc: 0, pc: 15] local: this index: 0 type: program.TestClass
        [pc: 0, pc: 15] local: i index: 1 type: int
      Stack map table: number of frames 1
        [pc: 14, same]

  // Method descriptor #15 (I)V
  // Stack: 2, Locals: 2
  public void B(int i);
     0  iload_1 [i]
     1  bipush 10
     3  if_icmple 14
     6  getstatic java.lang.System.out : java.io.PrintStream [16]
     9  ldc <String "i"> [22]
    11  invokevirtual java.io.PrintStream.println(java.lang.String) : void [24]
    14  return
      Line numbers:
        [pc: 0, line: 11]
        [pc: 6, line: 12]
        [pc: 14, line: 13]
      Local variable table:
        [pc: 0, pc: 15] local: this index: 0 type: program.TestClass
        [pc: 0, pc: 15] local: i index: 1 type: int
      Stack map table: number of frames 1
        [pc: 14, same]
Run Code Online (Sandbox Code Playgroud)

正如你所看到的那样是相同的.


For*_*med 5

两者完全相同。Java 编译将生成相同的代码。

但是请记住,在非括号的情况下,您将无法像在括号中的情况那样在 if 块中添加多个子语句

  • 应该没有区别。我没有测试使用一些字节码检查,但是如果有区别,那么这两个语句在编译器树 API 中的实现方式会有所不同(并且这两者之间没有区别) (3认同)