System::operator+ yöntemi
İçindekiler
[
Saklamak
]System::operator+(const char_t, const String&) method
String concatenation.
String System::operator+(const char_t left, const String &right)
| Parametre | Tür | Açıklama |
|---|---|---|
| sol | const char_t | Dizeye eklenecek karakter. |
| right | const String& | String birleştirilecek. |
ReturnValue
Birleştirilmiş dize.
Ayrıca Bakınız
- Class String
- Namespace System
- Library Aspose.Font for C++
System::operator+(const T&, const Decimal&) method
Belirtilen değerin ve belirtilen Decimal nesnesi tarafından temsil edilen değerin toplamını temsil eden yeni bir Decimal sınıfı örneği döndürür.
template<typename T,typename _> Decimal System::operator+(const T &x, const Decimal &d)
| Parametre | Tür | Açıklama |
|---|---|---|
| x | const T& | İlk toplama terimi |
| d | const Decimal& | İkinci toplama terimini temsil eden Decimal nesnesine sabit referans |
ReturnValue
Bir Decimal sınıfının yeni bir örneği, x ve d tarafından temsil edilen değerin toplamını temsil eder.
Ayrıca Bakınız
- Class Decimal
- Namespace System
- Library Aspose.Font for C++
System::operator+(const T1&, const Nullable<T2>&) method
Null olmayan ve null olabilen değerleri toplar.
template<typename T1,typename T2,typename> System::Nullable<decltype(some+other.get_Value())> System::operator+(const T1 &some, const Nullable<T2> &other)
| Parametre | Açıklama |
|---|---|
| T1 | Sol operand türü. |
| T2 | Sağ operand türü. |
| Parametre | Tür | Açıklama |
|---|---|---|
| bazı | const T1& | Sol operand. |
| diğer | const Nullable<T2>& | Sağ operand. |
ReturnValue
Toplama sonucu.
Ayrıca Bakınız
- Class Nullable
- Namespace System
- Library Aspose.Font for C++
System::operator+(MulticastDelegate<T>, MulticastDelegate<T>) method
Sağ el delegesinden gelen tüm geri çağırmaları, sol el delegesinin geri çağırma listesine sonuna bağlar.
template<typename T> MulticastDelegate<T> System::operator+(MulticastDelegate<T> lhv, MulticastDelegate<T> rhv)
| Parametre | Tür | Açıklama |
|---|---|---|
| lhv | MulticastDelegate<T> | Geri çağırmaların eklendiği delege. |
| rhv | MulticastDelegate<T> | Geri çağırmaları eklenen delege. |
ReturnValue
Sol el değerinin geri çağırmalarını ve ardından sağ el değerinin geri çağırmalarını içeren bir delege döndürür.
Ayrıca Bakınız
- Namespace System
- Library Aspose.Font for C++
System::operator+(T&, const String&) method
String concatenation.
template<typename T> std::enable_if<IsStringLiteral<T, char_t>::value, String>::type System::operator+(T &left, const String &right)
| Parametre | Açıklama |
|---|---|
| T | String literal tipi. |
| Parametre | Tür | Açıklama |
|---|---|---|
| sol | T& | Dizeye eklemek için bir literal. |
| right | const String& | String birleştirilecek. |
ReturnValue
Birleştirilmiş dize.
Ayrıca Bakınız
- Class String
- Namespace System
- Library Aspose.Font for C++
System::operator+(T&, const String&) method
String concatenation.
template<typename T> std::enable_if<IsStringPointer<T, char_t>::value, String>::type System::operator+(T &left, const String &right)
| Parametre | Açıklama |
|---|---|
| T | String işaretçi türü. |
| Parametre | Tür | Açıklama |
|---|---|---|
| left | T& | String dizisine eklemek için gösterici. |
| right | const String& | String birleştirilecek. |
ReturnValue
Birleştirilmiş dize.
Ayrıca Bakınız
- Class String
- Namespace System
- Library Aspose.Font for C++