VC++记录

1. 记录时间

#include <atlstr.h>
#include <time.h>
clock_t clockBegin, clockEnd; clockBegin = clock(); // do sth. clockEnd = clock(); double totaltime = (double)(clockEnd-clockBegin)/CLOCKS_PER_SEC; //输出时间是s CString csTemp; csTemp.Format("%f", totaltime); OutputDebugString(csTemp);

2. 报错

error C2664: 'void ATL::CStringT<BaseType,StringTraits>::Format (...)

解决

csTemp.Format(_T("%f"), totaltime); 
原文地址:https://www.cnblogs.com/kaituorensheng/p/9366565.html