结构体中含有char*类型
问题是:c++中,当结构体中含有char* 类型时,为什么在运行时输入 一串字符串 之后就不能继续运行了;简单代码如下:
#include <iostream>
using namespace std;
struct Student
{
char *name;
int age;
int height;
};
void massage_i(Student &a)
{
cout<<"name:";
cin>>a.name;
cout<<"age:";
cin>>a.age;
cout<<"height:";
cin>>a.height;
}
void display(Student temp)
{
cout<<temp.name<<"\t"<<temp.age<<"\t"<<temp.height;
}
int main()
{
Student stu;
massage_i(stu);
display(stu);
return 0;
}
调试了一下,发现stu.name区域显示0x1d error:cannot access memory at address
请问是什么地方错了吗?如果坚持要用 char *类型输入那该怎么修改?????