WStringBuffer& operator =(const WStringBuffer& buff); WStringBuffer& operator =(const String& str); WStringBuffer& operator =(const wchar_t * pstr); WStringBuffer& operator =(const char* putf8str);
= operator assigns buffer data.
Parameters |
Description |
const WStringBuffer& buff |
WStringBuffer object which is assigned to a buffer. |
const String& str |
A String which is assigned to a buffer. |
const wchar_t * pstr |
Pointer to wide character string which is assigned to a buffer. |
const char* putf8str |
Pointer to UTF-8 string which is assigned to a buffer. |
WStringBuffer object.