gpt4 book ai didi

c++ - 将用户输入复制到字符 vector

转载 作者:太空宇宙 更新时间:2023-11-04 12:16:01 25 4
gpt4 key购买 nike

快速免责声明,这是一个人为的示例,旨在模拟我在作业问题中看到的问题。为此,使用字符串是不可能的;我只能按照讲师使用字符数组:(

我正在尝试做的是连续读取键盘输入并将其存储在 vector 中.问题是,无论我向 vector 添加什么数据一旦addData丢失函数结束(当我尝试查看它时,我看到了 \320\366\277_\377 )。我相信这是因为我使用的是 vector<char*>。 , 所以 vector只能使用 pointer 内的数据存在。但是,如果我将其更改为 vector<char>,我的代码将无法编译。 ,因为我收到错误提示 cannot convert char* to char .

那么,如何将char 数组(不是 单个char)保存到 vector 元素中?或者,是否有更好的方法可以完全避免这个问题?

#include <iostream>
#include <cstring>
#include <vector>

using namespace std;
const int MAX_BUFFER_SIZE = 80;

// class declaration
class Example {
public:
void getData ();
void addData ( char * newData );
void displayData ();

private:
vector<char*> vec;
};

// main function
int main () {
bool quitProg;
int quit;
quitProg = false;
Example shoopDaWhoop; // buffers cannot overflow if you shoop da whoop
while (!quitProg) {
shoopDaWhoop.getData();
shoopDaWhoop.displayData();
cout << "Type 1 if you want to exit... ";
cin >> quit;
if (quit == 1) {
quitProg = true;
}
}
return 0;
}

void Example::getData () {
char userInput [MAX_BUFFER_SIZE];

cout << "Enter text: ";
cin.get(userInput, MAX_BUFFER_SIZE - 1, '\n');
if ( cin.fail() ) { // data is invalid
// clear and reset input stream
cin.clear(ios::goodbit);
cin.ignore(INT_MAX,'\n');
// alert user they entered bad data
cout << "That was bad data!" << endl;
}
else {
// data is good, pass it to addData
addData( userInput );
}
}

void Example::addData ( char * newData ) {
vec.push_back(newData);
cout << "You entered: " << vec.back() << endl;


}
void Example::displayData () {
for (int i=0; i<vec.size(); i++) {
cout << "Item " << i << ": " << vec[i] << endl;
}

最佳答案

使用 vector<char> , 而不是

vec.push_back(newData);

使用:

size_t len = strlen(newData);
vec.insert(vec.end(), newData, newData + len);

或者它实际上需要是一个 char 数组的 vector 吗?

关于c++ - 将用户输入复制到字符 vector ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7694375/

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