假设存在以下的代码:
pubilc Object get(){
if(){
if(){
return null;
}else{
return null;
}
}else{
return null;
}
}
这样就存在3个return了 ,这样写存在什么问题 ?
如果改成这样设置一个常量,该常量为null:
pubilc Object get(){
if(){
if(){
return user;
}else{
return SystemParm.NULL;
}
}else{
return SystemPar.NULL;
}
}
到底哪一种好一些 ?
慕妹3242003
12345678_0001
相关分类