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

一直提示错误 找不到啊

#include<iostream>

#include<stdlib.h>

#include<string>

using namespace std ;


int main(void)

{

Teacher t1;

Teacher t2("marry",12);

system ("pause");

return 0;

}


class Teacher

{

public :

Teacher();

Teacher(string _name,int _age);

void getName(string _name) ;

string getName();

void getAge(int _age);

int getAge();

private :

string m_strName;

int m_iAge;

};


Teacher::Teacher()

{

m_strName = "zhangsan";

    m_iAge = 5;

cout << "Teacher()" <<endl;

}

Teacher::Teacher(string _name,int _age)

{

m_strName=_name;

m_iAge=_age;

cout << "Teacher(string _name,int _age)" <<endl;

}

void Teacher::getName(string _name) 

{

m_strName=_name;

}string Teacher::getName()

{

return m_strName;

}

void Teacher::getAge(int _age)

{

m_iAge=_age;

}

int Teacher::getAge()

{

return m_iAge;

}

正在回答

1 回答

把main函数放到最下面

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

junono 提问者

但是我用分文件之后还是会提示错误
2015-07-22 回复 有任何疑惑可以回复我~
#2

康振宁 回复 junono 提问者

提示什么错误?
2015-07-23 回复 有任何疑惑可以回复我~
#3

junono 提问者

回复 血舞残殇不好意思没看到 我好像是忘记表明命名空间了 谢谢你
2015-07-29 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

一直提示错误 找不到啊

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