这是我的代码中的功能:
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
}
返回后的休息真的需要吗?
最佳答案
不能。它是无效代码,很可能会被编译器的优化器删除。删除它,因为它会降低代码的可读性。
关于c++ - 返回函数后需要休息一下吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7822967/