为什么定义char输出不了2?
/**
* 定义类:Student
* 数据成员:名字、年龄
*/
struct Student
{
public:
// 定义数据成员名字 m_strName 和年龄 m_iAge
string m_strName;
int m_iAge; //为什么这里定义char没有输出呢?
};
/**
* 定义类:Student
* 数据成员:名字、年龄
*/
struct Student
{
public:
// 定义数据成员名字 m_strName 和年龄 m_iAge
string m_strName;
int m_iAge; //为什么这里定义char没有输出呢?
};
2021-04-03
举报