طريقة System::Nullable::operator-
محتويات
[
يخفي
]Nullable::operator-(const Nullable<T1>&) const method
يطرح القيم nullable.
template<typename T1> System::Nullable<decltype(get_Value() - other.get_Value())> System::Nullable<T>::operator-(const Nullable<T1> &other) const
| معامل | الوصف |
|---|---|
| T1 | نوع العامل الأيمن. |
| معامل | نوع | الوصف |
|---|---|---|
| أخرى | const Nullable<T1>& | القيمة المراد طرحها. |
ReturnValue
نتيجة الطرح.
انظر أيضًا
- Class Nullable
- Class Nullable
- Namespace System
- Library Aspose.Font for C++
Nullable::operator-(const T1&) const method
يطرح القيم nullable والقيم غير nullable.
template<typename T1,typename> Nullable<decltype(get_Value() - other)> System::Nullable<T>::operator-(const T1 &other) const
| معامل | الوصف |
|---|---|
| T1 | نوع العامل الأيمن. |
| معامل | نوع | الوصف |
|---|---|---|
| أخرى | const T1& | القيمة المراد طرحها. |
ReturnValue
نتيجة الطرح.
انظر أيضًا
- Class Nullable
- Class Nullable
- Namespace System
- Library Aspose.Font for C++
Nullable::operator-(T1) const method
يطرح القيم nullable والقيم التي تشير إلى null.
template<typename T1,typename> Nullable<T> System::Nullable<T>::operator-(T1) const
| معامل | الوصف |
|---|---|
| T1 | نوع المعامل الأيمن، يجب أن يكون nullptr_t. |
ReturnValue
كائن Nullable فارغ.
انظر أيضًا
- Class Nullable
- Class Nullable
- Namespace System
- Library Aspose.Font for C++