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
ParameterΠεριγραφή
T1Τύπος δεξιού τελεστή.
ParameterTypeΠεριγραφή
άλλοconst Nullable<T1>&τιμή προς αφαίρεση.

ReturnValue

Αποτέλεσμα αφαίρεσης.

Δείτε επίσης

Nullable::operator-(const T1&) const method

Αφαιρεί nullable και non-nullable τιμές.

template<typename T1,typename> Nullable<decltype(get_Value() - other)> System::Nullable<T>::operator-(const T1 &other) const
ParameterΠεριγραφή
T1Τύπος δεξιού τελεστή.
ParameterTypeΠεριγραφή
άλλοconst T1&τιμή προς αφαίρεση.

ReturnValue

Αποτέλεσμα αφαίρεσης.

Δείτε επίσης

Nullable::operator-(T1) const method

Αφαιρεί nullable και null-pointed τιμές.

template<typename T1,typename> Nullable<T> System::Nullable<T>::operator-(T1) const
ParameterΠεριγραφή
T1Τύπος δεξιού τελεστή, πρέπει να είναι nullptr_t.

ReturnValue

Κενό αντικείμενο Nullable.

Δείτε επίσης