System::String::operator+= 方法
内容
[
隐藏
]String::operator+=(char_t) method
连接赋值运算符。
String & System::String::operator+=(char_t c)
| Parameter | Type | 描述 |
|---|---|---|
| c | char_t | 要添加到当前字符串末尾的字符。 |
ReturnValue
自身引用。
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+=(const String&) method
连接赋值运算符。
String & System::String::operator+=(const String &str)
| Parameter | Type | 描述 |
|---|---|---|
| str | const String& | String 用于添加到当前字符串的末尾。 |
ReturnValue
自身引用。
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+=(double) method
连接赋值运算符。
String & System::String::operator+=(double value)
| Parameter | Type | 描述 |
|---|---|---|
| value | double | Double 用于添加到当前字符串的末尾。 |
ReturnValue
自身引用。
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+=(int16_t) method
连接赋值运算符。
String & System::String::operator+=(int16_t value)
| Parameter | Type | 描述 |
|---|---|---|
| value | int16_t | Short 用于添加到当前字符串的末尾。 |
ReturnValue
自身引用。
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+=(int32_t) method
连接赋值运算符。
String & System::String::operator+=(int32_t value)
| Parameter | Type | 描述 |
|---|---|---|
| value | int32_t | Int 用于添加到当前字符串的末尾。 |
ReturnValue
自身引用。
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+=(int64_t) method
连接赋值运算符。
String & System::String::operator+=(int64_t value)
| Parameter | Type | 描述 |
|---|---|---|
| value | int64_t | Long 用于添加到当前字符串的末尾。 |
ReturnValue
自身引用。
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
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。 |
| Parameter | Type | 描述 |
|---|---|---|
| value | T | Boolean 用于添加到当前字符串的末尾。 |
ReturnValue
自身引用。
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+=(uint16_t) method
连接赋值运算符。
String & System::String::operator+=(uint16_t value)
| Parameter | Type | 描述 |
|---|---|---|
| value | uint16_t | Unsigned short 用于添加到当前字符串的末尾。 |
ReturnValue
自身引用。
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+=(uint32_t) method
连接赋值运算符。
String & System::String::operator+=(uint32_t value)
| Parameter | Type | 描述 |
|---|---|---|
| value | uint32_t | Unsigned int 用于添加到当前字符串的末尾。 |
ReturnValue
自身引用。
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+=(uint64_t) method
连接赋值运算符。
String & System::String::operator+=(uint64_t value)
| Parameter | Type | 描述 |
|---|---|---|
| value | uint64_t | Unsigned long 用于添加到当前字符串的末尾。 |
ReturnValue
自身引用。
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+=(uint8_t) method
连接赋值运算符。
String & System::String::operator+=(uint8_t value)
| Parameter | Type | 描述 |
|---|---|---|
| value | uint8_t | Byte 用于添加到当前字符串的末尾。 |
ReturnValue
自身引用。
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++