CComBSTR::operator +=
將字串附加至 CComBSTR 物件。
CComBSTR& operator +=(
const CComBSTR& bstrSrc
);
CComBSTR& operator +=(
const LPCOLESTR pszSrc
);
參數
bstrSrc
[in] 附加的。 CComBSTR 物件。pszSrc
[in] 以零結束的字串附加至。
備註
CComBSTR的文字上會比較在使用者的預設地區設定中。 LPCOLESTR 則會使用在未經處理資料的 memcmp 在每一個字串。 一旦 pszSrc 的暫存 Unicode 複本建立, LPCSTR 比較相同的方式執行。 最後的比較運算子。 NULL比較中包含的字串。
範例
CComBSTR bstrPre(OLESTR("Hello "));
CComBSTR bstrSuf(OLESTR("World!"));
// Appends "World!" to "Hello "
bstrPre += bstrSuf;
// Displays a message box with text "Hello World!"
::MessageBox(NULL, CW2CT(bstrPre), NULL, MB_OK);
需求
Header: atlbase.h