void operator +=(const String& src); void operator +=(const char* psrc); void operator +=(const wchar_t* psrc); void operator +=(char ch);
+= operator returns a new String which is a concatenation of the original string with the parameter.
Parameters |
Description |
const String& src |
String to be concatenated. |
const char* psrc |
Pointer to wide character string. |
char ch |
Character to be concatenated to the string. |