• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

格式化一个时间字符串

发布: 2007-7-01 20:40 | 作者: admin | 来源: | 查看: 11次 | 进入软件测试论坛讨论

领测软件测试网

格式化一个时间字符串

 

Article last modified on 2002-4-30

----------------------------------------------------------------

The information in this article applies to:

  - Microsoft Visual C++ 6.0

----------------------------------------------------------------

 

利用Run-Time Library

具体的用法范例

string strTime;

CurrentTimeStr(&strTime, TRUE);

 

CurrentTimeStr定义为:

#include <Time.h>

 

//////////////////////////////////////////////////////////////////////

//

// STL的常用头文件和声明: 

//

//////////////////////////////////////////////////////////////////////

#pragma warning(disable:4786)

#include <string>

using namespace std;

//

//////////////////////////////////////////////////////////////////////

 

 

 

//

// 构造出当前时间的字符串

//

void CurrentTimeStr(string *pstrTimeString,

                                   BOOL   bWantMore)

{

       char szTimeString[128];

       memset(szTimeString, 0, 128);

  

使用的结构tm的说明:

WCHAR.H中定义:

#ifndef _TM_DEFINED

struct tm {

        int tm_sec;     /* seconds after the minute - [0,59] */

        int tm_min;     /* minutes after the hour - [0,59] */

        int tm_hour;    /* hours since midnight - [0,23] */

        int tm_mday;    /* day of the month - [1,31] */

        int tm_mon;     /* months since January - [0,11] */

        int tm_year;    /* years since 1900 */

        int tm_wday;    /* days since Sunday - [0,6] */

        int tm_yday;    /* days since January 1 - [0,365] */

        int tm_isdst;   /* daylight savings time flag */

        };

#define _TM_DEFINED

#endif

       struct tm *today;

 

time_t类型是在WCHAR.H中定义:

#ifndef _TIME_T_DEFINED

typedef long time_t;

#define _TIME_T_DEFINED

#endif

       time_t ltime;

      

        定义在Time.H

Set time zone from TZ environment variable. If TZ is not set,

     the operating system is queried to obtain the default value

     for the variable.

    _tzset();

 

        定义在Time.H

Get UNIX-style time and display as number and string.

    time( &ltime );

 

这个函数的定义是:

struct tm * __cdecl localtime(const time_t *);

它主要是用来Use time structure to build a customized time string and correct for the local time zone.

它将返回一个指针,指向tm的结构,如果这个时间值是早于197011日午夜的,则会返回NULL

    today = localtime( &ltime );

 

       strftime指定的第一个参数就是目标字符串,第二个参数就是该目标字符串的最大

长度;

第三个参数将制定格式化的定义;

第四个参数是时间结构tm

下面说明格式化命令的含义:

%m

Month as decimal number (01 – 12)

%d

Day of month as decimal number (01 – 31)

%H

Hour in 24-hour format (00 – 23)

%M

Minute as decimal number (00 – 59)

%S

Second as decimal number (00 – 59)

       strftime( szTimeString, 128,

                      "=时间: %m月%d日%H时%M分%S秒 ", today );

      

       (*pstrTimeString).append(szTimeString);

}

//


延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网