博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
boost date_time
阅读量:6322 次
发布时间:2019-06-22

本文共 2875 字,大约阅读时间需要 9 分钟。

#include 
#include
#include
using namespace std;using namespace boost::gregorian;int _tmain(int argc, _TCHAR* argv[]){ date d1; date d2(2012,12,12); date d3(2012, Jan, 1); date d4(d2); assert(d1==date(not_a_date_time)); assert(d2==d4); d1=from_string("2012-12-10"); d2=(from_string("2012/12/10")); d3=from_undelimited_string("20121210"); cout<
<
<
<
<
<
<
<
#include 
#include
#include
using namespace std;using namespace boost::gregorian;int _tmain(int argc, _TCHAR* argv[]){ date d(2012,3,26); assert(d.year()==2012); assert(d.month()==3); assert(d.day()==26); //一次性的获得年月日数据 date::ymd_type ymd=d.year_month_day(); assert(ymd.year==2012); assert(ymd.month==3); assert(ymd.day==26); cout<<"今天是"<
<

 

日期长度:

#include 
#include
#include
using namespace std;using namespace boost::gregorian;int _tmain(int argc, _TCHAR* argv[]){ days d1(100); days d2(-100); assert(d1+d2==days(0)); assert((d1+d2).days()==0); weeks w(3); //三个星期 assert(w.days()==21); months m(5); //5个月 years y(2); //2年 months m2=y+m; //2年零5个月 assert(m2.number_of_months()==29); assert(y.number_of_years()*2==4); return 0;}

一些日期的运算:

#include 
#include
#include
using namespace std;using namespace boost::gregorian;//一些日期的运算int _tmain(int argc, _TCHAR* argv[]){ date d1(2012,3,26); date d2(1991,2,10); cout<<"我已经出生了"<
<<"天了"<

 

日期区间:

#include 
#include
#include
using namespace std;using namespace boost::gregorian;//日期区间int _tmain(int argc, _TCHAR* argv[]){ date_period dp(date(2012,1,1),days(10)); assert(!dp.is_null()); assert(dp.begin().day()==1); assert(dp.last().day()==10); assert(dp.end().day()==11); assert(dp.length().days()==10); cout<
<

日期区间的运算

 

#include 
#include
#include
using namespace std;using namespace boost::gregorian;//日期区间的运算int _tmain(int argc, _TCHAR* argv[]){ date_period dp(date(2012,1,1),days(10)); dp.shift(days(3)); assert(dp.begin().day()==4); assert(dp.length().days()==10); dp.expand(days(3)); assert(dp.begin().day()==1); assert(dp.length().days()==16); assert(dp.is_after(date(2000,12,12))); assert(dp.is_before(date(2013,12,12))); assert(dp.contains(date(2012,1,2))); return 0;}
==============================================================================
本文转自被遗忘的博客园博客,原文链接:http://www.cnblogs.com/rollenholt/archive/2012/03/26/2418444.html,如需转载请自行联系原作者
你可能感兴趣的文章
在Flex中动态设置icon属性
查看>>
采集音频和摄像头视频并实时H264编码及AAC编码
查看>>
3星|《三联生活周刊》2017年39期:英国皇家助产士学会于2017年5月悄悄修改了政策,不再鼓励孕妇自然分娩了...
查看>>
高级Linux工程师常用软件清单
查看>>
堆排序算法
查看>>
folders.cgi占用系统大量资源
查看>>
路由器ospf动态路由配置
查看>>
zabbix监控安装与配置
查看>>
python 异常
查看>>
last_insert_id()获取mysql最后一条记录ID
查看>>
可执行程序找不到lib库地址的处理方法
查看>>
Richard M. Stallman 给《自由开源软件本地化》写的前言
查看>>
oracle数据库密码过期报错
查看>>
rhel6下安装配置Squid过程
查看>>
《树莓派开发实战(第2版)》——1.1 选择树莓派型号
查看>>
在 Linux 下使用 fdisk 扩展分区容量
查看>>
如何在 Ubuntu Linux 16.04 LTS 中使用多个连接加速 apt-get/apt
查看>>
Delphi 操作Flash D7~XE10都有 导入Activex控件 shockwave
查看>>
oracle 学习笔记之名词解释
查看>>
MySQL Cluster搭建与测试
查看>>