为了账号安全,请及时绑定邮箱和手机立即绑定

实例化类时,采用无参的构造函数要出错是怎么回事啊?

#include <iostream>
#include <string>
using namespace std;

class Teacher
{
public:
	Teacher()
	{
		m_strName = "Lily";
		cout <<" Teacher()" << endl;
	}
	
	Teacher(int _age = 60)
	{
		m_iAge = _age;
		cout <<" Teacher(int _age = 60)" << endl;
	}
	
	void setName(string _name)
	{
		m_strName = _name;
	}
	string getName()
	{
		return m_strName;
	}
	void setAge(int _age)
	{
		m_iAge = _age;
	}
	int getAge()
	{
		return m_iAge;
	}
private :
	string m_strName;
	int m_iAge;
};

int main(void)
{
	Teacher t1;
	Teacher t2(50);
	//cout << droL.getName() << endl;
	system("pause");

}

http://img1.sycdn.imooc.com//581991320001a77a10130460.jpg

正在回答

2 回答

t1后面加个()就可以了

0 回复 有任何疑惑可以回复我~

同样的代码现在又不报错了,奇怪

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C++远征之封装篇(上)
  • 参与学习       103410    人
  • 解答问题       701    个

封装--面向对象的基石,本教程力求帮助小伙伴们即学即会

进入课程

实例化类时,采用无参的构造函数要出错是怎么回事啊?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信