数据类型转换之 CTime与CString

CTime 和CString的互相转换

CTime的格式有三种 
short date:1990-10-10 
long date:1990年10月1日 
time: 8:30:10

引用 
MSDN中CTime转换为CString 
// example for CTime::Format and CTime::FormatGmt 
CTime t( 1999, 3, 19, 22, 15, 0 ); 
// 10:15PM March 19, 1999 
CString s = t.Format( “%A, %B %d, %Y” ); 
ASSERT( s == “Friday, March 19, 1999” );


 时间的几种输出格式,其它格式要求见MSDN的strftime, wcsftime

//时间转字符 
str = t.Format( “%A, %B %d, %Y” );//返回的是Wednesday,Jnuary 01,1992 
//或者 
str = t_birth.Format(VAR_DATEVALUEONLY);//1993-01-01 
str =t.Format( “%x” ); //01/01/89 
str = t.Format( “%X” ); //00:00:00 
str = t.Format( “%Y年%m月%d日”);//1990年01月02日 
str = t.Format( “%#Y年%#m月%#d日”);//1990年1月2日 
str = t.Format( “%d年%02d月%02d日”,t.GetYear(),t.GetMonth(), 
t.GetDay);());//1990年 1月 2日


// CTimeAndCString.cpp : Defines the entry point for the console application.
/********************************************************************
    程序:CTime 和CString的互相转换
    编译器:vc6.0
    作者:斩月
    时间:10:07 2015-8-2
    使用说明:建立Win32命令行程序,工程名CTimeAndCString,勾选MFC  
*********************************************************************/

#include "stdafx.h"
#include "CTimeAndCString.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// The one and only application object

CWinApp theApp;

using namespace std;
CString CTime2CString(CTime t)
{
    CString s = t.Format( "%A, %B %d, %Y" );
    //ASSERT( s == "Friday, March 19, 1999" );
    return s;
}
CTime CString2CTime(CString str)
{
    COleVariant   vtime(str);   

    vtime.ChangeType(VT_DATE);   

    COleDateTime   oletime=vtime;   //vtime = 1983-1-1

    SYSTEMTIME   systime;   

    VariantTimeToSystemTime(oletime,&systime);  

    //CTime   time(oletime); //这一步转换的可能有误,替换成下面的程序
    CTime time(systime.wYear,systime.wMonth,systime.wDay,systime.wHour,systime.wMinute,systime.wSecond); //CTime time(1990,1,1,0,0,0);
    return time;
}
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
    int nRetCode = 0;

    // initialize MFC and print and error on failure
    if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
    {
        // TODO: change error code to suit your needs
        cerr << _T("Fatal Error: MFC initialization failed") << endl;
        nRetCode = 1;
        return nRetCode;
    }

    CTime t1 = CTime::GetCurrentTime(); //ti = 1438478336
    CString s1 = CTime2CString(t1); //返回值是 Sunday, August 02, 2015
    cout <<s1 <<endl;
    cout << "当前时间转换为CString : "<<(LPCTSTR)s1 <<endl;

    t1 = CString2CTime("1990-10-10");
    cout <<t1.GetYear()<<"年"<<t1.GetMonth() <<"月"<< t1.GetDay() <<"日"<<t1.GetHour() <<"时"<<" 星期:"<<t1.GetDayOfWeek()<<endl;

    t1 = CString2CTime("1990-10-11 8:30:10");
    cout <<t1.GetYear()<<"年"<<t1.GetMonth() <<"月"<< t1.GetDay() <<"日"<<t1.GetHour() <<"时"<<t1.GetMinute()<<"分钟"<<t1.GetSecond()<<"秒"<<" 星期:"<<t1.GetDayOfWeek()<<endl;

    t1 = CString2CTime("1992年12月12日");
    cout <<t1.GetYear()<<"年"<<t1.GetMonth() <<"月"<< t1.GetDay() <<"日"<<t1.GetHour() <<"时"<<" 星期:"<<t1.GetDayOfWeek()<<endl;

    return nRetCode;
}

 
 
  • 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
  • 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

运行结果

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值