C ++ std :: cin未处理的异常:访问冲突写入位置

时间:2011-07-07 05:27:44

标签: c++ std access-violation cin

尝试使用std::cin时,我收到了访问冲突。我正在使用char*并且它不允许我输入我的数据。

void Input(){
while(true){
    char* _input = "";
    std::cin >> _input; //Error appears when this is reached..
    std::cout << _input;
    //Send(_input);

3 个答案:

答案 0 :(得分:1)

您没有为cin提供缓冲区来存储数据。

operator>>(std::istream&, std::string)将为正在读取的字符串分配存储空间,但是您正在使用operator>>(std::istream&, char*)写入调用方提供的缓冲区,而您没有提供可写缓冲区(字符串文字不是可写的,所以你有一个访问冲突。

答案 1 :(得分:1)

char* _input = ""; // note: it's deprecated; should have been "const char*"

_input是指向字符串文字的指针。输入它是一种未定义的行为。 使用

char _input[SIZE]; // SIZE declared by you to hold the enough characters

std::string _input;

答案 2 :(得分:0)

试试这个:

char _input[1024];
std::cin >> _input;
std::cout << _input;

或更好:

std::string _input;
std::cin >> _input;
std::cout << _input;