网站首页  词典首页

请输入您要查询的计算机术语:

 

术语 CString::operator +=
释义 CString::operator +=

const CString& operator +=( const CString& string );
  throw( CMemoryException );
const CString& operator +=( TCHAR ch );
  throw( CMemoryException );
const CString& operator +=( LPCTSTR lpsz );
  throw( CMemoryException );

参数:
string将连接到此字符串之后的CString对象。
ch将连接到此字符串之后的一个字符。
lpsz指向将连接到此字符串之后的的字符串的指针。

说明:
此+=连接操作符将字符连接到此CString字符串之后。+=操作符可以接受另一个CString对象,一个指向字符的指针或一个字符作为参数。不管你什么时候使用这个连接操作符,都要小心可能出现的内存异常,因为常常要为添加到这个CString对象的字符分配内存。

示例:
下面的例子说明了如何使用CString::operator +=。
// CString::operator +=示例:
CString s( "abc" );
ASSERT( ( s += "def" ) == "abcdef" );

请参阅:CString::operator +
随便看

 

MFC类库中文详解手册包含4274条MFC类库参考词条,基本涵盖了Microsoft基本类库中的类、全局函数、全局变量和宏的内容,是计算机编程的有利工具。

 

Copyright © 2004-2023 Winrtm.com All Rights Reserved
京ICP备2021023879号-40 更新时间:2025/1/9 4:25:00