طريقة 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 تمثل قيمة ناتجة عن ضرب x والقيمة الممثلة بواسطة d.

انظر أيضًا


العنوان: طريقة System::operator< عنوان الرابط: operator< العنوان_الثاني: Aspose.Font for C++ الوصف: ‘System::operator< method. يحدد ما إذا كانت القيمة المحددة أصغر من القيمة التي يمثلها كائن Nullable المحدد عن طريق تطبيق operator<() على هذه القيم في C++.’ النوع: docs الوزن: 28700 عنوان 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

صحيح إذا كان المقارن الأول أصغر من المقارن الثاني، وإلا - خطأ

انظر أيضًا

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> method عنوان_الرابط: operator> العنوان_الثاني: Aspose.Font for C++ الوصف: ‘System::operator> method. يحدد ما إذا كانت القيمة المحددة أكبر من القيمة التي يمثلها كائن Nullable المحدد عن طريق تطبيق operator>() على هذه القيم في C++.’ النوع: docs الوزن: 34200 عنوان 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

صحيح إذا كان المقارن الأول أكبر من المقارن الثاني، وإلا - خطأ

انظر أيضًا

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)

انظر أيضًا