System::operator* メソッド

コンテンツ
[ ]

System::operator* method

指定された値と、指定された Decimal オブジェクトが表す値の乗算結果を表す Decimal クラスの新しいインスタンスを返します。

template<typename T,typename _> Decimal System::operator*(const T &x, const Decimal &d)
パラメーター説明
xconst T&最初の乗数
dconst Decimal&第二の乗数を表す Decimal オブジェクト

ReturnValue

Decimal クラスの新しいインスタンスで、xd が表す値の乗算結果を表します。

参照


title: System::operator< メソッド リンクタイトル: operator< second_title: Aspose.Page for C++ description: ‘System::operator< メソッド。指定された値が、指定された Nullable オブジェクトによって表される値よりも小さいかどうかを、C++ でこれらの値に operator<() を適用して判断します。’ type: docs 重み: 28600 URL: /cpp/system/operator_/

System::operator<(const T1&, const Nullable<T2>&) method

指定された値が、指定された Nullable オブジェクトによって表される値よりも小さいかどうかを、operator<() を適用して判断します。

template<typename T1,typename T2> std::enable_if<!IsNullable<T1>::value, bool>::type System::operator<(const T1 &some, const Nullable<T2> &other)
パラメーター説明
T1最初の比較対象値の型
T2第二の比較対象値を表す Nullable オブジェクトの基になる型
パラメーター説明
いくつかconst T1&最初の比較対象として使用される値への定数参照
otherconst Nullable<T2>&第二の比較対象として使用される表現された値を持つ Nullable オブジェクトへの定数参照

ReturnValue

最初の比較対象が2番目の比較対象より小さい場合は True、そうでない場合は false

参照

System::operator<(std::nullptr_t, const DateTimeOffset&) method

bool System::operator<(std::nullptr_t, const DateTimeOffset &)

参照

System::operator<(std::nullptr_t, const Nullable<T>&) method

常に false を返します。

template<typename T> bool System::operator<(std::nullptr_t, const Nullable<T> &)

参照

System::operator<(std::nullptr_t, DateTime) method

bool System::operator<(std::nullptr_t, DateTime)

参照

System::operator<(std::nullptr_t, TimeSpan) method

bool System::operator<(std::nullptr_t, TimeSpan)

参照


タイトル: System::operator> メソッド リンクタイトル: operator> second_title: Aspose.Page for C++ description: ‘System::operator> メソッド。指定された値が、指定された Nullable オブジェクトによって表される値よりも大きいかどうかを、C++ でこれらの値に operator>() を適用して判断します。’ type: docs 重み: 34100 URL: /cpp/system/operator_/

System::operator>(const T1&, const Nullable<T2>&) method

指定された値が、指定された Nullable オブジェクトによって表される値よりも大きいかどうかを、operator>() を適用して判断します。

template<typename T1,typename T2> std::enable_if<!IsNullable<T1>::value, bool>::type System::operator>(const T1 &some, const Nullable<T2> &other)
パラメーター説明
T1最初の比較対象値の型
T2第二の比較対象値を表す Nullable オブジェクトの基になる型
パラメーター説明
いくつかconst T1&最初の比較対象として使用される値への定数参照
otherconst Nullable<T2>&第二の比較対象として使用される表現された値を持つ Nullable オブジェクトへの定数参照

ReturnValue

最初の比較対象が2番目の比較対象より大きい場合は True、そうでない場合は false

参照

System::operator>(std::nullptr_t, const DateTimeOffset&) method

bool System::operator>(std::nullptr_t, const DateTimeOffset &)

参照

System::operator>(std::nullptr_t, const Nullable<T>&) method

常に false を返します。

template<typename T> bool System::operator>(std::nullptr_t, const Nullable<T> &)

参照

System::operator>(std::nullptr_t, DateTime) method

bool System::operator>(std::nullptr_t, DateTime)

参照

System::operator>(std::nullptr_t, TimeSpan) method

bool System::operator>(std::nullptr_t, TimeSpan)

参照