System::String::operator+= 方法

String::operator+=(char_t) method

连接赋值运算符。

String & System::String::operator+=(char_t c)
ParameterType描述
cchar_t要添加到当前字符串末尾的字符。

ReturnValue

自身引用。

另见

String::operator+=(const String&) method

连接赋值运算符。

String & System::String::operator+=(const String &str)
ParameterType描述
strconst String&String 用于添加到当前字符串的末尾。

ReturnValue

自身引用。

另见

String::operator+=(double) method

连接赋值运算符。

String & System::String::operator+=(double value)
ParameterType描述
valuedoubleDouble 用于添加到当前字符串的末尾。

ReturnValue

自身引用。

另见

String::operator+=(int16_t) method

连接赋值运算符。

String & System::String::operator+=(int16_t value)
ParameterType描述
valueint16_tShort 用于添加到当前字符串的末尾。

ReturnValue

自身引用。

另见

String::operator+=(int32_t) method

连接赋值运算符。

String & System::String::operator+=(int32_t value)
ParameterType描述
valueint32_tInt 用于添加到当前字符串的末尾。

ReturnValue

自身引用。

另见

String::operator+=(int64_t) method

连接赋值运算符。

String & System::String::operator+=(int64_t value)
ParameterType描述
valueint64_tLong 用于添加到当前字符串的末尾。

ReturnValue

自身引用。

另见

String::operator+=(T) method

连接赋值运算符。

template<typename T,std::enable_if_t< std::is_same< T, bool >::value > *> String & System::String::operator+=(T value)
Parameter描述
T用于与字符串连接的值类型。必须是 bool。
ParameterType描述
valueTBoolean 用于添加到当前字符串的末尾。

ReturnValue

自身引用。

另见

String::operator+=(uint16_t) method

连接赋值运算符。

String & System::String::operator+=(uint16_t value)
ParameterType描述
valueuint16_tUnsigned short 用于添加到当前字符串的末尾。

ReturnValue

自身引用。

另见

String::operator+=(uint32_t) method

连接赋值运算符。

String & System::String::operator+=(uint32_t value)
ParameterType描述
valueuint32_tUnsigned int 用于添加到当前字符串的末尾。

ReturnValue

自身引用。

另见

String::operator+=(uint64_t) method

连接赋值运算符。

String & System::String::operator+=(uint64_t value)
ParameterType描述
valueuint64_tUnsigned long 用于添加到当前字符串的末尾。

ReturnValue

自身引用。

另见

String::operator+=(uint8_t) method

连接赋值运算符。

String & System::String::operator+=(uint8_t value)
ParameterType描述
valueuint8_tByte 用于添加到当前字符串的末尾。

ReturnValue

自身引用。

另见