假设我写了这样的代码
if(i==100)
{
System.out.println("hello");
}
或者我写这样的代码
if(i==100) System.out.println("hello");
以上两种代码的性能和效率会有什么不同吗?
假设我写了这样的代码
if(i==100)
{
System.out.println("hello");
}
或者我写这样的代码
if(i==100) System.out.println("hello");
以上两种代码的性能和效率会有什么不同吗?