C++重载运算符练习--对people类重载“= =”运算符和“=”运算符
- 题目描述
对people类重载“= =”运算符和“=”运算符,“==”运算符判断两个people类对象的id属性是否相等;“=”运算符实现people类对象的赋值操作。 - 代码如下
#include<iostream>
#include<string>
using namespace std;
class Data{
public:
Data(){}
Data(int yy,int mm,int dd){
year=yy;
month=mm;
day=dd;
}
Data(Data &ap){
year=ap.year;
month=ap.month;
day=ap.day;
}
~Data(){
}
int get_year(){
return year;
}
int get_month(){
return month;
}
int get_day(){
return day;
}
void set_year(int y){
year=y;
}
void set_month(int m){
month=m;
}
void set_day(int d){
day=d;
}
private:
int year;
int month;
int day;
};
class People{
public:
People(int num,string se,Data birth,string iid):birthday(birth){
number=num;
sex=se;
id=iid;
}
People(People &tp){
number=tp.get_number();
sex=tp.get_sex();
id=tp.get_id();
birthday=tp.get_birthday();
}
People(){}
People get_People(){
int num,yy,mm,dd;
string ID,se;
cout<<"Please enter the number of the People:"<<endl;
cin>>num;
cout<<"Please enter the sex:(male or female)"<<endl;
cin>>se;
cout<<"Please enter the birthday:"
<<"(Warning the format is 1998 8 3.)"<<endl;
cin>>yy>>mm>>dd;
cout<<"Please enter the id:"<<endl;
cin>>ID;
Data birth(yy,mm,dd);
id=ID;
number=num;
sex=se;
birthday=birth;
return *this;
}
~People(){}
void set_number(int num){
number=num;
}
void set_sex(string se){
sex=se;
}
void set_birhtday(Data birth){
birthday=birth;
}
void set_id(string iidd){
id=iidd;
}
inline int get_number(){
return number;
}
inline string get_sex(){
return sex;
}
Data get_birthday()
{
return birthday;
}
inline string get_id(){
return id;
}
void details(){
cout<<"Number:"<<number<<endl;
cout<<"Sex:"<<sex<<endl;
cout<<"Birthday:"<<birthday.get_year()<<"/"<<birthday.get_month()<<"/"<<birthday.get_day()<<endl;
cout<<"ID:"<<id<<endl;
}
People& operator=(const People &p1){
if(this==&p1){
return *this;
}
number=p1.number;
sex=p1.sex;
birthday=p1.birthday;
id=p1.id;
}
private:
int number;
string sex;
Data birthday;
string id;
friend bool operator== (const People &p1,const People &p2){
if(p1.id==p2.id)
return true;
else
return false;
}
};
int main()
{
People asp,tcp,tmp;
asp.get_People();
asp.details();
tcp.get_People();
tcp.details();
if(asp==tcp)
cout<<"The id of two people is common!!!"<<endl;
else
cout<<"The id of two people is different!!!"<<endl;
tmp=asp;
tmp.details();
return 0;
}
- 测试截图
C++重载运算符练习--对people类重载“= =”运算符和“=”运算符的更多相关文章
- C++11运算符重载详解与向量类重载实例(<<,>>,+,-,*等)
1. C++运算符重载介绍 C ++ 中预定义的运算符的操作对象只能是基本数据类型.但实际上,对于许多用户自定义类型(例如类),也需要类似的运算操作.这时就必须在C ++ 中重新定义这些运算符,赋予已 ...
- YTU 2443: C++习题 复数类--重载运算符3+
2443: C++习题 复数类--重载运算符3+ 时间限制: 1 Sec 内存限制: 128 MB 提交: 1368 解决: 733 题目描述 请编写程序,处理一个复数与一个double数相加的运 ...
- YTU 2441: C++习题 复数类--重载运算符2+
2441: C++习题 复数类--重载运算符2+ 时间限制: 1 Sec 内存限制: 128 MB 提交: 847 解决: 618 题目描述 定义一个复数类Complex,重载运算符"+ ...
- YTU 2440: C++习题 复数类--重载运算符+,-,*,/
2440: C++习题 复数类--重载运算符+,-,*,/ 时间限制: 1 Sec 内存限制: 128 MB 提交: 1189 解决: 774 题目描述 定义一个复数类Complex,重载运算符& ...
- YTU 2439: C++习题 复数类--重载运算符+
2439: C++习题 复数类--重载运算符+ 时间限制: 1 Sec 内存限制: 128 MB 提交: 1022 解决: 669 题目描述 定义一个复数类Complex,重载运算符"+ ...
- ostream类重载的operator<<()函数
ostream类重载了operator<<()以识别不同的类型,如: int short long unsigned int unsigned short unsigned long f ...
- 初探C++运算符重载学习笔记<2> 重载为友元函数
初探C++运算符重载学习笔记 在上面那篇博客中,写了将运算符重载为普通函数或类的成员函数这两种情况. 以下的两种情况发生.则我们须要将运算符重载为类的友元函数 <1>成员函数不能满足要求 ...
- php面向对象 封装继承多态 接口、重载、抽象类、最终类总结
1.面向对象 封装继承多态 接口.重载.抽象类.最终类 面向对象 封装继承多态 首先,在解释面向对象之前先解释下什么是面向对象? [面向对象]1.什么是类? 具有相同属性(特征)和方法(行为)的一 ...
- 15.C++-操作符重载、并实现复数类
首先回忆下以前学的函数重载 函数重载 函数重载的本质为相互独立的不同函数 通过函数名和函数参数来确定函数调用 无法直接通过函数名得到重载函数的入口地址 函数重载必然发生在同一个作用域中 类中的函数重载 ...
随机推荐
- html History API
History api 兼容性支持一下浏览器 为什么要使用History API 在AJAX给我们带来提高用户体验.减少HTTP连接数等好处的同时,也渐渐显露出一些不足之处,比如: 1.页面全是用aj ...
- centos7.2+php7.2+nginx1.12.0+mysql5.7配置
一. 源码安装php7.2 选择需要的php版本 从 php官网: http://cn2.php.net/downloads.php 选择需要的php版本,选择.tar.gz 的下载包,点击进入,选择 ...
- MySQL中如何实现select top n
用惯了access mssql server的朋友,可能在用mysql查询前N条记录时,习惯的使用select top n 形式的语句,在这里说明一下,mysql没有此语法,mysql用limit来实 ...
- scrapy实战--爬取最新美剧
现在写一个利用scrapy爬虫框架爬取最新美剧的项目. 准备工作: 目标地址:http://www.meijutt.com/new100.html 爬取项目:美剧名称.状态.电视台.更新时间 1.创建 ...
- 转:c# 安装包制作
.net Windows服务程序和安装程序制作 最近项目中用到window服务程序,以前没接触过,比较陌生,花了两天的时间学习了下,写了个简单的服务,但在制作安装程序的时候,参照网上很多资料,却都制作 ...
- 基于dispatch_after封装YXTimer
基于dispatch_after封装YXTimer 本人根据dispatch_after封装了一个定时器,支持block以及代理的方式来激活定时器,适用于对精度要求低,耗时短的地方,高端大气上档次,低 ...
- [翻译] UCZProgressView
UCZProgressView UCZProgressView is a circular progress indicator with cool animations for image load ...
- 北美IT求职攻略
http://www.followmedoit.com/bbs/forum.php?mod=viewthread&tid=19&extra=page%3D1 身在北美,想留下来并能过得 ...
- Linode VPS主机套餐方案降低处理方法且不影响数据
使用Linode VPS主机产品经历过512MB内存升级至1GB内存,再升级至2GB内存,以及目前推出1GB内存方案月付10美元.比如我们在使用Linode 2GB内存方案的时候占用资源不是太多,其实 ...
- C++ 读书笔记2
dfadsfa body { font-family: Helvetica, arial, sans-serif; font-size: 14px; line-height: 1.6; padding ...