作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
如果我需要满足 std::is_unsigned
和 std::is_integral
的类型,我是必须同时检查还是只检查 std::is_unsigned
?
最佳答案
cppreference 有此行 is_unsigned
( https://en.cppreference.com/w/cpp/types/is_unsigned ):
this results in true for the unsigned integer types and the type bool and in false for the signed integer types and the floating-point types. For any other type, value is false.
因此,如果 is_unsigned
为 true
,则 is_integral
也为真。
关于c++ - std::is_unsigned 是否暗示 std::is_integral,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53516497/
如果我需要满足 std::is_unsigned 和 std::is_integral 的类型,我是必须同时检查还是只检查 std::is_unsigned? 最佳答案 cppreference 有此
我想知道是否 std::is_unsigned::value 是否按照标准定义好? 我问这个问题是因为 typename std::make_unsigned::type没有很好的定义。 最佳答案 b
我是一名优秀的程序员,十分优秀!