1. 程式人生 > >mfc 中的_T

mfc 中的_T

1.工業程式設計中字串處理和編碼一直是個大問題,最近剛好做一點工業程式設計的事,需要用到usb通訊,接受位元組陣列,對於字串處理,MFC有較好的處理機制,整理一下_T的用法。

#define _T(x) __T(x)
#define _Text(x) __T(x)

2.mfc 中的字串表示常用_T,意為text,定義為巨集定義,可以方便的定義所有字串為UNICODE或者ANSI

例如_T(“HELLO”);
字串既可以表示為8位的ANSI也可以表示16位的Unicode。
如果對於所有的字串定義了_T並且定義了預處理標誌“_UNICODE”,所有的字串便按照UNICODE編碼,如果不定義,則按照_ANSI.

Example
CString str;

str.Format(_T("Floating point: %.2f\n"), 12345.12345);
_tprintf("%s", (LPCTSTR) str);

str.Format(_T("Left-justified integer: %.6d\n"), 35);
_tprintf("%s", (LPCTSTR) str);

str.Format(IDS_SCORE, 5, 3);
_tprintf("%s", (LPCTSTR) str);

Output
If the application has a string resource with
the identifier IDS_SCORE that contains the string "Penguins: %d\nFlyers : %d\n", the above code fragment produces this output: Floating point: 12345.12 Left-justified integer: 000035 Penguins: 5

3.更改編碼格式

Project Properties - General - Project Defaults - Character Set