码迷,mamicode.com
首页 > 编程语言 > 详细

C++书写的第一个类

时间:2020-02-14 14:45:15      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:clu   函数   mic   efi   end   include   第一个   class   private   

1、建立Student.h头文件

#ifndef STUDENT_H
#define STUDENT_H

#include <string>
using namespace std;
class Student{

private: 
    string name;
    int age;

public:
    void setName(string name);
    string getName();
    void setAge(int age);
    int getAge();
};


#endif // !STUDENT_H

2、建立头文件中声明的方法

#include<iostream>
#include<string>
#include"Student.h"

using namespace std;
void Student::setName(string a)
{
    name = a;
}
string Student::getName()
{
    return  name;
}
void Student::setAge(int ag){
    age = ag;
}
int Student::getAge(){
    return age;
}

3、建立main函数测试

#include<iostream>
#include<string>
#include"Student.h"

using namespace std;
int main()
{
    Student  stu;
    stu.setName("后裔");
    stu.setAge(18);
    cout << stu.getName() << "   " << stu.getAge() << endl;
    return 0;}

运行结果:

技术图片

 

C++书写的第一个类

标签:clu   函数   mic   efi   end   include   第一个   class   private   

原文地址:https://www.cnblogs.com/cmkbk/p/12307249.html

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