码迷,mamicode.com
首页 > 其他好文 > 详细

同文件类外定义

时间:2018-06-26 20:47:18      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:clu   private   names   str   TE   void   col   class   stream   

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

class teacher{
  public:
  void setName(string _name);
  string getName();
  void setGender(string _gender);
  string getGender();
  void teach();
  
  private:
  string strName;
  string strGender;
};
 void teacher::setName(string _name){
      strName=_name;
  }
  string teacher::getName(){
      return strName;
  }
  void teacher::setGender(string _gender){
      strGender=_gender;
  }
  string teacher::getGender(){
      return strGender;
  }
  void teacher::teach(){
      cout << "上课" << endl;
  }


int main()
{
    teacher t;
    t.setName("A");
    t.setGender("");
    cout << t.getName() + "  " << t.getGender() << endl;
    t.teach();
    return 0;
}

 

同文件类外定义

标签:clu   private   names   str   TE   void   col   class   stream   

原文地址:https://www.cnblogs.com/pjishu/p/9230987.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!