码迷,mamicode.com
首页 > 其他好文 > 详细

MFC动态时间表示法——strtime函数

时间:2014-09-10 15:48:00      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   ar   div   sp   log   on   

%a 星期几的简写
%A 星期几的全称
%b 月分的简写
%B 月份的全称
%c 标准的日期的时间串
%C 年份的后两位数字
%d 十进制表示的每月的第几天
%D 月/天/年
%e 在两字符域中,十进制表示的每月的第几天
%F 年-月-日
%g 年份的后两位数字,使用基于周的年
%G 年分,使用基于周的年
%h 简写的月份名
%H 24小时制的小时
%I 12小时制的小时
%j 十进制表示的每年的第几天
%m 十进制表示的月份
%M 十时制表示的分钟数
%n 新行符
%p 本地的AM或PM的等价显示
%r 12小时的时间
%R 显示小时和分钟:hh:mm
%S 十进制的秒数
%t 水平制表符
%T 显示时分秒:hh:mm:ss
%u 每周的第几天,星期一为第一天 (值从0到6,星期一为0)
%U 第年的第几周,把星期日做为第一天(值从0到53)
%V 每年的第几周,使用基于周的年
%w 十进制表示的星期几(值从0到6,星期天为0)
%W 每年的第几周,把星期一做为第一天(值从0到53)
%x 标准的日期串
%X 标准的时间串
%y 不带世纪的十进制年份(值从0到99)
%Y 带世纪部分的十制年份
%z,%Z 时区名称,如果不能得到时区名称则返回空字符。
%% 百分号

 

///////////定时器/////////////////////////////////
int iInstallresult;
iInstallresult=SetTimer(1,100,NULL);
if(iInstallresult==0)
{
    MessageBox("fail to install the timer!");
}
else 
    CurrentTime();

 

void CGymnasiumDlg::CurrentTime()
{
  time_t tCurrentTime;
  ///声明
  SYSTEMTIME st;
  GetLocalTime(&st);
  CString m_year,m_month,m_day,m_hour,m_minute,m_second;
  char szBuffer[256];
  //获取系统时间
  tCurrentTime=time((time_t*)NULL);
   ////////////
  	strftime ( szBuffer, sizeof ( szBuffer ), "%Y", localtime ( &tCurrentTime ) );
	m_year= szBuffer;

	strftime ( szBuffer, sizeof ( szBuffer ), "%m", localtime ( &tCurrentTime ) );
	m_month= szBuffer;

	strftime ( szBuffer, sizeof ( szBuffer ), "%d", localtime ( &tCurrentTime ) );
	m_day= szBuffer;
	
	strftime ( szBuffer, sizeof ( szBuffer ), "%H", localtime ( &tCurrentTime ) );
	m_hour = szBuffer;
	strftime ( szBuffer, sizeof ( szBuffer ), "%M", localtime ( &tCurrentTime ) );
	m_minute = szBuffer;
	strftime ( szBuffer, sizeof ( szBuffer ), "%S", localtime ( &tCurrentTime ) );
	m_second = szBuffer;

	//////////////////////////////////////
	( GetDlgItem ( IDC_STATIC_System_Time ) ) -> SetWindowText("当前时间是:"+m_year+"年"+m_month+"月"+m_day+"日"+" "+m_hour+"时"+m_minute+"分"+m_second+"秒");

}

 

void CGymnasiumDlg::OnTimer(UINT_PTR nIDEvent)
{
	// TODO: Add your message handler code here and/or call default
	CurrentTime();
	CDialogEx::OnTimer(nIDEvent);
}

 

MFC动态时间表示法——strtime函数

标签:style   blog   color   使用   ar   div   sp   log   on   

原文地址:http://www.cnblogs.com/Ricezhang/p/3964469.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!