1. 問題描述
編寫程式時通常會面對一些不同的編碼格式,如unicode和multibytes。在有關字串的處理時尤其重要,系統程式設計時通常會遇到很多這樣的問題,例如把wchar*的字串轉換為char*的字串,有時還需要把char*型別的字串轉換為wchar*型別。下面提供幾種解決方案。
2. 解決方案
2.1 wchar* 轉到 char*
方法一,使用_bstr_t轉換。
#include // you will need this
const wchar* wc = l"hello world" ;
_bstr_t b(wc);
const char* c = b;
printf("output: %s\n", c);
方法二,使用conversion macros。
包含在標頭檔案#include 中,使用需謹慎!因為轉換字串分配的空間在棧上,直到函式返回才釋放。如歸使用很多次,例如在遞迴函式裡使用,容易造成記憶體溢位。
uses_conversion;
wchar* wc = l"hello world" ;
char* c = w2a(wc);
方法三,使用sprintf,比較簡潔。
char output[256];
wchar* wc = l"hellow world" ;
sprintf(output, "%ws", wc );
2.2 char*轉 wchar*
方法一:使用mbstowcs函式。
const wchar_t *getwc(const char *c)
方法二:使用uses_conversion。
用法及注意事項同上。
uses_conversion;
char* c = l"hello world" ;
wchar* wc = a2w(c);
方法三:使用swprintf函式,推薦使用。
time t tm systemtime 互相轉換
摘自 標頭檔案 time.h 函式原型 time t time time t timer 功 能 獲取當前的系統時間,返回的結果是乙個time t型別 即int64型別 其實就是乙個大整數,其值表示從cut coordinated universal time 時間1970年1月1日00 00 00...
time t tm systemtime 互相轉換
標頭檔案 time.h 函式原型 time t time time t timer 功 能 獲取當前的系統時間,返回的結果是乙個time t型別 即int64型別 其實就是乙個大整數,其值表示從cut coordinated universal time 時間1970年1月1日00 00 00 稱為...
time t tm systemtime 互相轉換
標頭檔案 time.h 函式原型 time t time time t timer 功 能 獲取當前的系統時間,返回的結果是乙個time t型別 即int64型別 其實就是乙個大整數,其值表示從cut coordinated universal time 時間1970年1月1日00 00 00 稱為...