_tcslen=lstrlen: the number of tchars
strlen = lstrlena:the bytes of string
wcslen = lstrlenw: 字串的字元個數
_t("123設計模式") = _text("123設計模式") tchar格式
l"123設計模式" wchar格式
"123設計模式" char格式
怎樣獲取當前時間?
a:精確到毫秒
typedef struct _systemtime systemtime, *psystemtime;
systemtime tm;
getsystemtime(&tm); 格林威志標準時間
getlocaltime(&tm); 返回所在地區的時間,北京時間
b:精確到秒
ctime tm = ctime::getcurrenttime();//精確到秒
tm.format("%y年%m月%d日 %h點%m分%s秒")
c:精確到55毫秒
dword gettickcount() = dword getcurrenttime() //系統執行的時間 精確到55毫秒
d:精確到秒
time_t time();//從1970開始來的秒數
轉換:varianttimetosystemtime(date param1, &systemtime param2)//date(double)->systemtime
sizeof和strlen和 countof的區別
運算子,計算引數所佔記憶體 int nnum2 strlen arr 是函式,求字元的個數,不包括 0 int nnum3 countof arr windows巨集 計算陣列的元素個數 cout nnum1 cout nnum2 cout nnum3 endl int arr1 20 nnum1 ...
sizeof和strlen的區別
sizeof與strlen的區別與聯絡 轉 1.sizeof操作符的結果型別是size t,它在標頭檔案中typedef為unsigned int型別。該型別保證能容納實現所建立的最大物件的位元組大小。2.sizeof是算符,strlen是函式。3.sizeof可以用型別做引數,strlen只能用c...
strlen和sizeof的區別
sizeof與strlen的區別與聯絡 轉 1.sizeof操作符的結果型別是size t,它在標頭檔案中typedef為unsigned int型別。該型別保證能容納實現所建立的最大物件的位元組大小。2.sizeof是算符,strlen是函式。3.sizeof可以用型別做引數,strlen只能用c...