System::operator+ メソッド
コンテンツ
[
隠れる
]System::operator+(const char_t, const String&) method
String concatenation.
String System::operator+(const char_t left, const String &right)
| パラメーター | 型 | 説明 |
|---|---|---|
| 左 | const char_t | 文字列に連結する文字。 |
| right | const String& | String を連結する。 |
ReturnValue
連結された文字列。
参照
- Class String
- Namespace System
- Library Aspose.Page for C++
System::operator+(const T&, const Decimal&) method
指定された値と、指定された Decimal オブジェクトが表す値の合計を表す Decimal クラスの新しいインスタンスを返します。
template<typename T,typename _> Decimal System::operator+(const T &x, const Decimal &d)
| パラメーター | 型 | 説明 |
|---|---|---|
| x | const T& | 最初の加数 |
| d | const Decimal& | 第二の加数を表す Decimal オブジェクトへの定数参照 |
ReturnValue
Decimal クラスの新しいインスタンスで、x と d が表す値の合計を表します。
参照
- Class Decimal
- Namespace System
- Library Aspose.Page for C++
System::operator+(const T1&, const Nullable<T2>&) method
null 許容でない値と nullable 値を合計します。
template<typename T1,typename T2,typename> System::Nullable<decltype(some+other.get_Value())> System::operator+(const T1 &some, const Nullable<T2> &other)
| パラメーター | 説明 |
|---|---|
| T1 | 左オペランドの型。 |
| T2 | 右オペランドの型。 |
| パラメーター | 型 | 説明 |
|---|---|---|
| いくつか | const T1& | 左オペランド。 |
| その他 | const Nullable<T2>& | 右オペランド。 |
ReturnValue
合計結果。
参照
- Class Nullable
- Namespace System
- Library Aspose.Page for C++
System::operator+(MulticastDelegate<T>, MulticastDelegate<T>) method
右側デリゲートのすべてのコールバックを左側デリゲートのコールバックリストの末尾に接続します。
template<typename T> MulticastDelegate<T> System::operator+(MulticastDelegate<T> lhv, MulticastDelegate<T> rhv)
| パラメーター | 型 | 説明 |
|---|---|---|
| lhv | MulticastDelegate<T> | コールバックが追加されるデリゲートです。 |
| rhv | MulticastDelegate<T> | コールバックが追加されているデリゲートです。 |
ReturnValue
左側の値のコールバックとその後に右側のコールバックを含むデリゲートを返します。
参照
- Namespace System
- Library Aspose.Page 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)
| パラメーター | 説明 |
|---|---|
| T | String リテラル型。 |
| パラメーター | 型 | 説明 |
|---|---|---|
| 左 | T& | 文字列に連結するリテラルです。 |
| right | const String& | String を連結する。 |
ReturnValue
連結された文字列。
参照
- Class String
- Namespace System
- Library Aspose.Page 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)
| パラメーター | 説明 |
|---|---|
| T | String ポインタ型。 |
| パラメーター | 型 | 説明 |
|---|---|---|
| left | T& | String を文字列に連結するポインタです。 |
| right | const String& | String を連結する。 |
ReturnValue
連結された文字列。
参照
- Class String
- Namespace System
- Library Aspose.Page for C++