Metodo System::Nullable::operator-
Contenuti
[
Nascondere
]Nullable::operator-(const Nullable<T1>&) const method
Sottrae valori nullable.
template<typename T1> System::Nullable<decltype(get_Value() - other.get_Value())> System::Nullable<T>::operator-(const Nullable<T1> &other) const
| Parametro | Descrizione |
|---|---|
| T1 | Tipo dell’operando destro. |
| Parametro | Tipo | Descrizione |
|---|---|---|
| altro | const Nullable<T1>& | valore da sottrarre. |
ReturnValue
Risultato della sottrazione.
Vedi anche
- Class Nullable
- Class Nullable
- Namespace System
- Library Aspose.Page for C++
Nullable::operator-(const T1&) const method
Sottrae valori nullable e non nullable.
template<typename T1,typename> Nullable<decltype(get_Value() - other)> System::Nullable<T>::operator-(const T1 &other) const
| Parametro | Descrizione |
|---|---|
| T1 | Tipo dell’operando destro. |
| Parametro | Tipo | Descrizione |
|---|---|---|
| altro | const T1& | valore da sottrarre. |
ReturnValue
Risultato della sottrazione.
Vedi anche
- Class Nullable
- Class Nullable
- Namespace System
- Library Aspose.Page for C++
Nullable::operator-(T1) const method
Sottrae valori nullable e valori puntati a null.
template<typename T1,typename> Nullable<T> System::Nullable<T>::operator-(T1) const
| Parametro | Descrizione |
|---|---|
| T1 | Tipo dell’operando destro, dovrebbe essere nullptr_t. |
ReturnValue
Oggetto Nullable vuoto.
Vedi anche
- Class Nullable
- Class Nullable
- Namespace System
- Library Aspose.Page for C++