這是我的代碼功能:我需要休息後返回我的功能?
bool same_community(string s1, string s2)//check if student 1 & student 2 are in the same community
{
for(int i=0;i<number_of_communities;i++)
if(community[i].contains(s1) && community[i].contains(s2))
{
return true;
break;
}
return false
}
是迴歸後的休息真正需要的?
不,但我建議更好的縮進:-)啊......我甚至建議,即使是單個襯墊也要使用{}。將s1和s2傳遞爲'const string&' – xanatos
返回後您不必折斷。 –
你永遠不會到達休息!根據您的編譯器(設置),您也會收到警告或錯誤。 – Em1