cppreference의 설명서 에서이 예제를 보았습니다.std::numeric_limits
#include <limits>
#include <iostream>
int main()
{
std::cout << "type\tlowest()\tmin()\t\tmax()\n\n";
std::cout << "uchar\t"
<< +std::numeric_limits<unsigned char>::lowest() << '\t' << '\t'
<< +std::numeric_limits<unsigned char>::min() << '\t' << '\t'
<< +std::numeric_limits<unsigned char>::max() << '\n';
std::cout << "int\t"
<< std::numeric_limits<int>::lowest() << '\t'
<< std::numeric_limits<int>::min() << '\t'
<< std::numeric_limits<int>::max() << '\n';
std::cout << "float\t"
<< std::numeric_limits<float>::lowest() << '\t'
<< std::numeric_limits<float>::min() << '\t'
<< std::numeric_limits<float>::max() << '\n';
std::cout << "double\t"
<< std::numeric_limits<double>::lowest() << '\t'
<< std::numeric_limits<double>::min() << '\t'
<< std::numeric_limits<double>::max() << '\n';
}
"+"연산자를 이해할 수 없습니다
<< +std::numeric_limits<unsigned char>::lowest()
나는 그것을 테스트하고 그것을 "-"로 바꾸었고, 그것은 효과가 있었다. 이러한 "+"연산자의 사용법은 무엇입니까?
-
+
입니다. 이 경우 쿼리는 아마도 "c ++ 단항 더하기"일 것입니다. 그것은 ... 직관적이지는 않지만 여전히 찾을 수있는 문서를 읽는 법을 배워야하지만 IMO는 배양하는 데 유용한 기술입니다.
+
있습니까?