これは初心者レベルの質問ですが、空の if ステートメントを使用することをお勧めします。
次のコードを検討してください。
void RabbitList::purge()
{
if(head == NULL)
{
//cout << "Can't purge an empty colony!" << endl;
}
else
{
//Kill half the colony
for(int amountToKill = (getColonySize()) / 2; amountToKill != 0;)
{
RabbitNode * curr = head;
RabbitNode * trail = NULL;
bool fiftyFiftyChance = randomGeneration(2);
//If the random check succeeded but we're still on the head node
if(fiftyFiftyChance == 1 && curr == head)
{
head = curr->next;
delete curr;
--size;
--amountToKill;
}
//If the random check succeeded and we're beyond the head, but not on last node
else if(fiftyFiftyChance == 1 && curr->next != NULL)
{
trail->next = curr->next;
delete curr;
--size;
--amountToKill;
}
//If the random check succeeded, but we're on the last node
else if(fiftyFiftyChance == 1)
{
trail->next = NULL;
delete curr;
--size;
--amountToKill;
}
//If the random check failed
else
{
trail = curr;
curr = curr->next;
}
}
cout << "Food shortage! Colony has been purged by half." << endl;
}
}
ご覧のとおり、5 行目の if ステートメントは現在コメント アウトされています。これはデバッグ用のテキストであり、コンソールにフィードバックを送りたくありません。if ステートメントが何もしないようにするのは悪い習慣と見なされると確信しています。私は戻ってくることができることを知っています。
しかし、戻り値の型が void であるため、エラーが発生します。たとえば、戻り値の型が void でない場合はどうなりますか?