重构 简化return
遇到类似这种代码:
bool ret;
if (DoSth() == -1) {
ret = false;
} else {
ret = true;
}
if (!ret)
return false;
return true;
常忍不住把它改了:
return DoSth() != -1;
遇到类似这种代码:
bool ret;
if (DoSth() == -1) {
ret = false;
} else {
ret = true;
}
if (!ret)
return false;
return true;
常忍不住把它改了:
return DoSth() != -1;