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

합산 결과.

또 보기

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
매개변수설명
T1오른쪽 피연산자 타입.
매개변수형식설명
기타const T1&더할 값.

ReturnValue

합산 결과.

또 보기

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

Nullable 클래스의 기본 생성된 인스턴스를 반환합니다.

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

또 보기