编写一个标准类—Student

编写一个标准类—Student

Main函数:

#include <iostream>
#include <string>
#include "Student.h"
using namespace std;

int main()
{
	Student student("xiaoming", "123");
	student.display();
	student.set_pass_word("456");
	cout << student.get_pass_word();

	return 0;
}


头文件:

#include <string>
using namespace std;

class Student
{
private:
	string user_name;
	string pass_word;

public:
	Student(string user_name, string pass_word);

	string get_user_name();
	string get_pass_word();
	void set_user_name(string user_name);
	void set_pass_word(string pass_word);

	void display();
};


源文件:

#include <string>
#include <iostream>
#include "student.h"
using namespace std;

Student::Student(string user_name, string pass_word)
{
	this->user_name = user_name;
	this->pass_word = pass_word;
}

string Student::get_user_name()
{
	return this->user_name;
}

string Student::get_pass_word()
{
	return this->pass_word;
}

void Student::set_user_name(string user_name)
{
	this->user_name = user_name;
}

void Student::set_pass_word(string pass_word)
{
	this->pass_word = pass_word;
}

void Student::display()
{
	cout << "user_name: " << this->user_name << endl;
	cout << "pass_word: " << this->pass_word << endl;
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值