java中简单的if语句_java – 简单if语句与普通if语句

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

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

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值