Bu örneği cppreference belgelerinde gördümstd::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';
}
"+" Operatörünü anlamıyorum
<< +std::numeric_limits<unsigned char>::lowest()
Onu test ettim, "-" ile değiştirdim ve bu da işe yaradı. Böyle bir "+" operatörünün kullanımı nedir?
-
, çıkışlar sınırlar için doğru değerler olmayacaktır
+
. Bu durumda, sorgunuz muhtemelen "c ++ unary plus" olacaktır. Bu ... tam olarak sezgisel değil ve yine de bulacağınız belgeleri okumayı öğrenmek zorundasınız, ancak IMO, geliştirmek için yararlı bir beceridir.
+
?