System::String::operator+ méthode
String::operator+(char_t) const method
Ajoute un caractère à la fin de la chaîne.
String System::String::operator+(char_t x) const
| Paramètre | Type | Description |
|---|---|---|
| x | char_t | Caractère à ajouter. |
ReturnValue
String concatenation result.
Voir aussi
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+(const String&) const method
String concatenation operator.
String System::String::operator+(const String &str) const
| Paramètre | Type | Description |
|---|---|---|
| str | const String& | String à ajouter à la fin de la chaîne actuelle. |
ReturnValue
Chaîne concaténée.
Voir aussi
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+(const T&) const method
String concatenation with string literal or character string pointer.
template<typename T,std::enable_if_t< IsStringLiteral< T, char_t >::value > *> String System::String::operator+(const T &arg) const
| Paramètre | Description |
|---|---|
| T | L’une des formes de littéral de chaîne ou de pointeur de chaîne de caractères. |
| Paramètre | Type | Description |
|---|---|---|
| arg | const T& | Entité à concaténer avec la chaîne actuelle. |
ReturnValue
Chaîne concaténée.
Voir aussi
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+(const T&) const method
Ajoute la représentation sous forme de chaîne de l’objet de type référence à la fin de la chaîne.
template<typename T,std::enable_if_t< IsSmartPtr< T >::value > *> String System::String::operator+(const T &value) const
| Paramètre | Description |
|---|---|
| T | type de pointeur. |
| Paramètre | Type | Description |
|---|---|---|
| value | const T& | Object à convertir en chaîne en utilisant l’appel ToString() et à ajouter à la chaîne actuelle. |
ReturnValue
String concatenation result.
Voir aussi
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+(const T&) const method
Ajoute la représentation sous forme de chaîne de l’objet de type valeur à la fin de la chaîne.
template<typename T,std::enable_if_t<!IsSmartPtr< T >::value &&!std::is_scalar< T >::value &&!std::is_array< T >::value > *> String System::String::operator+(const T &value) const
| Paramètre | Description |
|---|---|
| T | Type valeur sur lequel appeler ToString(). |
| Paramètre | Type | Description |
|---|---|---|
| value | const T& | Object à convertir en chaîne en utilisant l’appel ToString() et à ajouter à la chaîne actuelle. |
ReturnValue
String concatenation result.
Voir aussi
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+(double) const method
Ajoute la représentation sous forme de chaîne de la valeur à virgule flottante à la fin de la chaîne.
String System::String::operator+(double d) const
| Paramètre | Type | Description |
|---|---|---|
| d | double | Valeur à convertir en chaîne et à ajouter. |
ReturnValue
String concatenation result.
Voir aussi
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+(int) const method
Ajoute la représentation sous forme de chaîne de la valeur entière à la fin de la chaîne.
String System::String::operator+(int i) const
| Paramètre | Type | Description |
|---|---|---|
| i | int | Valeur entière à convertir en chaîne et à ajouter. |
ReturnValue
String concatenation result.
Voir aussi
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+(int64_t) const method
Ajoute la représentation sous forme de chaîne de la valeur entière à la fin de la chaîne.
String System::String::operator+(int64_t v) const
| Paramètre | Type | Description |
|---|---|---|
| v | int64_t | Valeur à convertir en chaîne et à ajouter à ajouter. |
ReturnValue
String concatenation result.
Voir aussi
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+(T) const method
Ajoute la représentation sous forme de chaîne de la valeur booléenne à la fin de la chaîne.
template<typename T,std::enable_if_t< std::is_same< T, bool >::value > *> String System::String::operator+(T arg) const
| Paramètre | Description |
|---|---|
| T | Type de valeur à concaténer avec la chaîne. Doit être bool. |
| Paramètre | Type | Description |
|---|---|---|
| arg | T | Valeur Boolean à convertir en chaîne et à ajouter. |
ReturnValue
String concatenation result.
Voir aussi
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::operator+(uint32_t) const method
Ajoute la représentation sous forme de chaîne de la valeur entière non signée à la fin de la chaîne.
String System::String::operator+(uint32_t i) const
| Paramètre | Type | Description |
|---|---|---|
| i | uint32_t | Valeur à convertir en chaîne et à ajouter. |
ReturnValue
String concatenation result.
Voir aussi
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++