13.3.3 应用程序界面(Application Interface)

//用DateMid_New类做界面 ^-^有点不够意思了,这个都还写出来有点错,自己还差点找不到

 

#include "datemid_new.h"
#include <iostream>
int main()
{
    DateMid_New d(2005,9,9), e(42211);
	std::cout<<d;
	std::cout<<++d<<e;
	system("pause");
	return 0;
}

  

//DateMid_New作为应用程序界面
#ifndef HEADER_DATEMID_NEW
#define HEADER_DATEMID_NEW
#include <iostream>
class Date_new; //先声明一下Date_new类

class DateMid_New
{
     Date_new* m_p; //声明一个私有的Date_new类型的指针m_p
public:
	
	DateMid_New(const std::string s); //构造函数,参数为string
	//DateMid(const std::string s);
	DateMid_New(int n); //重载构造函数,参数为int
	DateMid_New(int y, int m, int d); //重载构造函数,参数为年月日
	DateMid_New(const Date_new& d);   //重载构造函数,参数为一个Date_new类型的引用
	~DateMid_New();  //析构函数
	
	DateMid_New operator+(int n)const; //重载运算符
	DateMid_New& operator+=(int n); //重载运符符加等,返回的类型为DateMid_New的一个地址
	DateMid_New& operator++();      //重载自加
	int operator-(DateMid_New& d)const; //重载减操作,返回一个整形
	friend std::ostream& operator<<(std::ostream& o, const DateMid_New& d);/**/
};
#endif;

  

#include "date_new.h"
#include "datemid_new.h"
#include <iostream>

//直接去操作Date_new的构造函数

DateMid_New::DateMid_New(const std::string s):m_p(new Date_new(s)){}

DateMid_New::DateMid_New(int n):m_p(new Date_new(n)){};

DateMid_New::DateMid_New(int y, int m, int d):m_p(new Date_new(y,m,d)){};

DateMid_New::DateMid_New(const Date_new& d):m_p(new Date_new(d)){};

DateMid_New::~DateMid_New(){ delete m_p; }

DateMid_New DateMid_New::operator+(int n)const{ return *m_p + n; }

DateMid_New& DateMid_New::operator+=(int n){ *m_p + n; return *this; }

DateMid_New& DateMid_New::operator++(){ *m_p +=1; return *this; }

int DateMid_New::operator-(DateMid_New& d)const{ return *m_p - *(d.m_p); }

std::ostream& operator<<(std::ostream& o, const DateMid_New & d){
	return o<<*(d.m_p);
}

  

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
疫情居家办公系统管理系统按照操作主体分为管理员和用户。管理员的功能包括办公设备管理、部门信息管理、字典管理、公告信息管理、请假信息管理、签到信息管理、留言管理、外出报备管理、薪资管理、用户管理、公司资料管理、管理员管理。用户的功能等。该系统采用了MySQL数据库,Java语言,Spring Boot框架等技术进行编程实现。 疫情居家办公系统管理系统可以提高疫情居家办公系统信息管理问题的解决效率,优化疫情居家办公系统信息处理流程,保证疫情居家办公系统信息数据的安全,它是一个非常可靠,非常安全的应用程序。 管理员权限操作的功能包括管理公告,管理疫情居家办公系统信息,包括外出报备管理,培训管理,签到管理,薪资管理等,可以管理公告。 外出报备管理界面,管理员在外出报备管理界面中可以对界面中显示,可以对外出报备信息的外出报备状态进行查看,可以添加新的外出报备信息等。签到管理界面,管理员在签到管理界面中查看签到种类信息,签到描述信息,新增签到信息等。公告管理界面,管理员在公告管理界面中新增公告,可以删除公告。公告类型管理界面,管理员在公告类型管理界面查看公告的工作状态,可以对公告的数据进行导出,可以添加新公告的信息,可以编辑公告信息,删除公告信息
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值