CTime 使用总结
文章转自王牌软件
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
只回答业务咨询
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
1.初始化 m_begintime=CTime(2004,1,1,0,0,0,-1);//参数依次为year,month,day,hour,minite,second m_endtime =CTime::GetCurrentTime();//当前时间 2.日期比较 CTimeSpan span; span=time1-time2; 得到两时间的间隔. 可以取得span.GetHours().等 3.access数据库查询 使用DateDiff()函数,具体参照access帮助 CString timesql; timesql.Format(" Where DateDiff('d',%s,'%s')<=0","日期",m_begintime.Format("%Y-%m-%d")); 4读取日期字段(odbc) CDBVariant var; recset.GetFieldValue(i,var); s.Format("%d-%d-%d",(var.m_pdate)->year,(var.m_pdate)->month, (var.m_pdate)->day); 5.CTime转换为CString 例: m_begintime.Format("%Y-%m-%d");//2004-10-03 6.CString转换为CTime //s="2004-10-5" int first=s.Find('-'); int second=s.Find('-',first+1); int year=atoi(s.Left(4)); int month=atoi(s.Mid(first+1,second-first+1)); int day=atoi(s.Mid(second+1,s.GetLength()-second-1)); CTime temp(year,month,day,0,0,0); 7.判断CString是否表示的正确日期格式 //判断是否为2004-01-13 ch 可代表其他分隔符 bool IsDate(CString str,char ch) { if(str.IsEmpty()) return false; //日期分段 int first=str.Find(ch); int second=str.Find(ch,first+1); int year=atoi(str.Left(4)); int month=atoi(str.Mid(first+1,second-first+1)); int day=atoi(str.Mid(second+1,str.GetLength()-second-1)); //判断 if (year < 2000 || year >= 2010) { return false; } else if (month< 1 || month >12) { return false; } else if (day< 1 || day > 31) { return false; } else if (month == 4 || month == 6 || month == 9 || month == 11) { if(day > 30) { return false; } else { return true; } } else if (month == '2') { if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) { if (day>29) { return false; } else { return true; } } else if (day>28) { return false; } return true; } else { return true; } } |
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=602