标签: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;}
运行结果:
标签:clu 函数 mic efi end include 第一个 class private
原文地址:https://www.cnblogs.com/cmkbk/p/12307249.html