尝试使用std::cin
时,我收到了访问冲突。我正在使用char*
并且它不允许我输入我的数据。
void Input(){
while(true){
char* _input = "";
std::cin >> _input; //Error appears when this is reached..
std::cout << _input;
//Send(_input);
答案 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;