哪个if
语句更快,具有以下条件。似乎短路会编译成比非短路更多的指令。
bool force = false;
bool _isLoadingActual = true;
bool _isLoadingLoadCore = true;
int a = 0, b = 0;
if (force | !(_isLoadingActual | _isLoadingLoadCore))
{
a = 1;
}
if (force || !(_isLoadingActual || _isLoadingLoadCore))
{
b = 1;
}