如果我有一些看起来像这样的代码:
if(someInteger || somecomplexfunction() > 0) {
// do something
}
someInteger
如果计算结果为真,会调用该函数吗?
ps 用 GCC 编译-O2
如果我有一些看起来像这样的代码:
if(someInteger || somecomplexfunction() > 0) {
// do something
}
someInteger
如果计算结果为真,会调用该函数吗?
ps 用 GCC 编译-O2