System::Nullable::operator+ metodu

Nullable::operator+(const Nullable<T1>&) const method

Nullable değerleri toplar.

template<typename T1> System::Nullable<decltype(get_Value()+other.get_Value())> System::Nullable<T>::operator+(const Nullable<T1> &other) const
ParameterAçıklama
T1Sağ operand tipi.
ParameterTypeAçıklama
diğerconst Nullable<T1>&eklenecek değer.

ReturnValue

Toplama sonucu.

Ayrıca Bakınız

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

Nullable ve non-nullable değerleri toplar.

template<typename T1,typename> Nullable<decltype(get_Value()+other)> System::Nullable<T>::operator+(const T1 &other) const
ParameterAçıklama
T1Sağ operand tipi.
ParameterTypeAçıklama
diğerconst T1&eklenecek değer.

ReturnValue

Toplama sonucu.

Ayrıca Bakınız

Nullable::operator+(std::nullptr_t) const method

Nullable sınıfının varsayılan olarak oluşturulmuş bir örneğini döndürür.

Nullable<T> System::Nullable<T>::operator+(std::nullptr_t) const

Ayrıca Bakınız