问题:我只想问 2 个问题,如果我在 java 中编写以下代码 2,那么在 cpu 周期方面哪个更快,为什么?有人告诉我,第一个选项在 cpu 周期方面是不正确的,因为在那个 2 条件下检查,即 if 和 !
boolean flag = true;
//OPTION ONE
if(!flag) {
//error
} else {
//got the answer
}
//OPTION TWO
if(flag) {
//got the answer
} else {
//error
}