gpt4 book ai didi

c++ - 错误。 C++。 ')' 标记之前的预期主表达式

转载 作者:行者123 更新时间:2023-11-28 00:15:33 25 4
gpt4 key购买 nike

我写了一个简单的程序,在 switch 中遇到了错误。怎么了?

错误:')' 标记前应为主表达式

#include <iostream>
#include <list>
using namespace std;

int main() {
list<string> myList;

string s;
while (true) {
cin >> s;
switch(s) {
case "quit":
break;

default:
myList.push_back(s);
break;
}
}
}

谢谢。

最佳答案

真正的问题在这里:

 switch(s) {

您不能在 switch case 中使用 strings

备选方案:

一个 if-else 阶梯。由于您只有一种情况,因此请为它使用 if 语句。例如:

if (s=="quit") {
break;
}
else
myList.push_back(s);

关于c++ - 错误。 C++。 ')' 标记之前的预期主表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30556914/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com