CSimpleStringT::operator +=
聯結新的字串或字元到現有字串的結尾。
CSimpleStringT& operator +=(
PCXSTR pszSrc
);
CSimpleStringT& operator +=(
const CSimpleStringT& strSrc
);
template< int t_nSize >
CSimpleStringT& operator+=(
const CStaticString< XCHAR, t_nSize >& strSrc
);
CSimpleStringT& operator +=(
char ch
);
CSimpleStringT& operator +=(
unsigned char ch
);
CSimpleStringT& operator +=(
wchar_t ch
);
參數
pszSrc
為 null 結尾字串的指標。strSrc
對現有 CSimpleStringT 物件的指標。ch
要附加的字元。
備註
運算子接受其他 CSimpleStringT 物件或一個字元。 請注意記憶體不足的例外狀況可能發生,您可以在使用這個串連運算子,因為可能會配置新儲存的字元加入至 CSimpleStringT 物件。
範例
下列範例示範如何使用 CSimpleStringT::operator +=。
CSimpleString str(_T("abc"), pMgr);
ASSERT(_tcscmp((str += _T("def")), _T("abcdef")) == 0);
需求
Header: atlsimpstr.h