私が次のような単純なコードのチャンクを持っている場合:
public void tracePath(){
int steps = 0;
steps = bfs();
if(steps==0){
pathFound(false);
System.exit(0);
}else{
System.out.println(steps);
pathFound(true);
System.exit(0);
}
}
AFAIKこれは他の人なしで書き直すことができます
public void tracePath(){
int steps = 0;
steps = bfs();
if(steps==0){
pathFound(false);
System.exit(0);
}
System.out.println(steps);
pathFound(true);
System.exit(0);
}
パフォーマンス(または他の論理的な)理由があるので、他のものを保持(または失う)しますか?それとも(この例では)文体の選択ですか?