我想知道以下两者之间是否有任何性能差异?
if(i>=0){
//some code here
}
//and
if(i>-1){
//some code here
}
那么下面两个呢?
if(i>=0){
//some code here
}
//and
if(i>0 || i==0){
//some code here
}
是否>=
会在内部转换为> || ==
?
PS 性能差异会很小,可以忽略不计,但我想知道是否有任何性能差异?