gpt4 book ai didi

C++ - 如何将用户的字符串输入到 vector 字符串中,然后基于它执行一些操作?

转载 作者:搜寻专家 更新时间:2023-10-31 00:58:01 25 4
gpt4 key购买 nike

<分区>

我如何使它工作?

char stringw[];                   //to hold the data user enters and then copy it to the string vector .. I didnt know any direct method
cin>>stringw;
directions.push_back(stringw); //directions is a <string> vector

如何进行这样的检查?
if(directions[i][j])=="N")//我收到一个错误
“错误:在‘==’标记之前需要主表达式"

编辑 1:错误已解决 if(directions[i][j])=="N") 应该是 if(directions[i][ j]=="N") 我意外地关闭了括号

现在我们如何将字符串数据添加到字符串 vector 中?

编辑 2:已解决!

实际上使用 char stringw 的数据类型是 char * 而我将 char * 插入一个字符串中……不是那样的。

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