void operator +=(const String& src); void operator +=(const char* psrc); void operator +=(const wchar_t* psrc); void operator +=(char ch);
+= 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 the string which is to be concatenated. |
char ch |
Character which is concatenated with the string. |