java – 简单if语句与普通if语句

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

例1:

if (cond) statement;

例2:

if (cond) {
    statement;
}

问题的背景是,我在“高性能”类中看到了像java.awt.Rectangle和Point只有没有花括号的变体.

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

解决方法

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

我正常使用{}因为使代码易于阅读(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");
    }

生成的字节码:

// 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,same]

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

相关文章

前言 逆向工程从数据库表直接生成代码,是日常开发中常用的敏...
前言 Java网络编程之Socket套接字,Socket套接字使用TCP提供...
前言 虽然现在已经很少项目会涉及GUI技术,但作为一个合格的...
前言 几乎所有的系统都有密码安全要求,这是基础的安全策略,...
前言 当我们在写设计文档,或者是其他涉及到数据架构、表结构...
前言 Fiddler是一款强大的Web调试代理工具,又称抓包软件,本...