c++ 计算2个日期相差天数,去除节假日和周末

该博客介绍了如何使用C++编程计算两个日期之间的相差天数,并在此过程中排除节假日和周末。示例代码中定义了变量DAY以表示节假日,并通过ClaculateDays函数计算特定日期范围的工作日差值。
摘要由CSDN通过智能技术生成
// Calctime.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
#include <cmath>
#include <string>
#include <vector>
#include <sstream> 
using namespace std;

struct Date{
int year;
int month;
int day;
};

int DAY[12] ={31,28,31,30,31,30,31,31,30,31,30,31};
class TimeSrv
{
public:
TimeSrv();
~TimeSrv();
static int DateDiff(string date1, string date2, const vector<string> &holiday_vec);
private:
static inline bool IsLeap(int year);
static inline bool StringToDate(const string &date, int& year, int& month, int& day);
static inline int  ClaculateDays(Date date_max, Date date_min, const vector<string> &holiday_vec);
};

//IsLeap函数判断一个年份是否为闰年
bool TimeSrv::IsLeap(int year)
{
   return (year % 4 ==0 || year % 400 ==0) && (year % 100 !=0);
}
 
//上面的StringToDate函数用于取出日期中的年月日并判断日期是否合法
//从字符中最得年月日 规定日期的格式是yyyymmdd
bool TimeSrv::StringToDate(const string &date, int& year, int& month, int& day)
{
if (date.length() < 8)
return false;

    year = atoi((date.substr(0,4)).c_str());
    month = atoi((date.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值