本文介绍了我遇到了麻烦:意思。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在此示例中分号的含义>> for(const auto& value:1st)
what does the semicolon mean in this example >> for (const auto& value : 1st)
#include <initializer_list>
using namespace std;
int makeSum(initializer_list<int> 1st)
{ int total= 0;
for (const auto& value : 1st) { //Right here
total += value; }
return total; }
我尝试过:
我试着在这里一次又一次地问。
What I have tried:
I tried to ask here, again and again.
推荐答案
这篇关于我遇到了麻烦:意思。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!