- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否有可能,至少在理论上,cstdint typedef 绑定(bind)到某些实现特定类型 std::numeric_limits 不是专门用于?
根据http://www.cplusplus.com/reference/limits/numeric_limits ,让我引述一下,“[std::numeric_limits] 专用于每个基本算术类型,其成员描述类型 T 的属性。此模板不得专用于任何其他类型。”
根据 http://en.cppreference.com/w/cpp/types/numeric_limits ,让我再次引用,“实现可以为特定于实现的类型提供 std::numeric_limits 的特化”。
“可能”,cppreference 说。所以他们不必。
最后,根据 http://www.cplusplus.com/reference/cstdint ,标题中定义的 typedef“是基本整数类型或扩展整数类型的 typedef”。
因此,总而言之 - 似乎 cstdint typedef 可能绑定(bind)到扩展整数类型(无论它们是什么),它们不是基本整数类型(同样,无论它们是),因此可能与 std::numeric_limits 不兼容。这是正确的吗?
但是,我链接到的文档在一点上似乎有些不一致。 cplusplus.com 是否禁止 std::numeric_limits 不得专用于任何非基础算术类型,以反对 cppreference 允许 std::numeric_limits 可能专用于特定于实现的类型?当然,除非这些特定于实现的类型实际上是 基本整数类型,在这种情况下,希望 std::numeric_limits 必须专用于所有 cstdint 类型定义。
文档让我很困惑。所以我在这里问我的问题:)
编辑。
根据 http://eel.is/c++draft/cstdint , cstdint 必须绑定(bind)到整数类型。并根据http://eel.is/c++draft/limits.numeric , "应为每种算术类型提供专门化,包括 float 和整数,包括 bool"。 整数类型是算术类型,因此 std::numeric_limits 必须专用于 cstdint typedef 的理解是否正确?
最佳答案
特化,例如 std::numeric_limits<std::int_fast32_t>
必须存在。
3.9.1/2:
There are five standard signed integer types: "
signed char
", "short int
", "int
", "long int
", and "long long int
". ... There may also be implementation-defined extended signed integer types. The standard and extended signed integer types are collectively called signed integer types.
3.9.1/3:
For each of the standard signed integer types, there exists a corresponding (but different) standard unsigned integer type.... Likewise, for each of the extended signed integer types there exists a corresponding extended unsigned integer type.... The standard and extended unsigned integer types are collectively called unsigned integer types.
3.9.1/7:
Types
bool
,char
,char16_t
,char32_t
,wchar_t
, and the signed and unsigned integer types are collectively called integral types. A synonym for integral type is integer type.
3.9.1/8:
Integral and floating types are collectively called arithmetic types. Specializations of the standard template
std::numeric_limits
(18.3) shall specify the maximum and minimum values of each arithmetic type for an implementation.
18.3.2.1/2:
Specializations [of
numeric_limits
] shall be provided for each arithmetic type, both floating point and integer, includingbool
.
18.4.1:
namespace std {
typedef signed_integer_type int8_t; // optional
//...
typedef unsigned_integer_type uint8_t; // optional
//...
}
因此 <cstdint>
中定义的类型可能是扩展类型,但绝对是整数类型,因此必须具有相应的特化 std::numeric_limits
.
此外,所有整数类型都是标准 (3.9) 中使用的“基本”类型,尽管并非所有类型都是标准类型。
关于c++ - cstdint typedef 是否可以绑定(bind)到某些实现特定类型 std::numeric_limits 不是专门用于?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31527219/
之间有什么区别?和 ? (除此之外,一个将东西放在命名空间 std:: 中,另一个放在 std::tr1:: 中) 由于这些东西还不是标准的,我猜它是特定于编译器的,所以我在谈论 gcc。要用非
我一直在我的代码中定期使用 cstdint 的类型(例如 uint32_t),但现在它们不太符合我的需求,尤其是在模板方面。 有没有办法指定一个两倍于模板参数大小的整数类型?当我的模板传递一个 uin
( ) header 定义了几种整数类型,它们的名称遵循以下模式:intN_t , 其中N是位数,而不是字节数。 鉴于字节的长度没有严格定义为 8 位,为什么不将这些类型定义为例如 int1_t而
我正在尝试在命令上构建几个项目,但我一直因为找不到 而搞砸了.该项目在到达包含路径中的特定行时尝试构建一个,特别是 #include 它抛出一个错误 fatal error: 'cstdint' f
在 C++11 中,我可以选择是否要使用在有或没有命名空间 std::中定义的类型 至少我的编译器 (g++ 4.7) 接受这两种变体。 我的问题是:使用 cstdint 中的 typedef 的推荐
我一直在思考要不要使用里面的typedef与否。 我个人更喜欢写 uint32_t超过 unsigned int和 int8_t超过 char等等......因为它对我来说更直观。 你们怎么看?使用
Boost 的 C99 stdint 实现非常方便。不过有一件事让我很烦恼。他们将所有 typedef 转储到 boost namespace 中.在使用此工具时,这给我留下了三个选择: 使用“usi
我使用的是 Mac 10.10 和 OpenCV 3.0,当我编译我的项目时出现了这个错误: ld: symbol(s) not found for architecture x86_64 clang
stdint.h和cstdint有什么区别? 它们都在 MSVC (Visual Studio 2010) 和 gcc-4.5.1 中可用。还都定义了 intX_t/uintX_t 类型(其中 X 是
从我对 boost 的窥视中和 libstdc++ , 库通常使用 std::size_t和 std::ssize_t每当事先不知道无符号/有符号索引的上限/下限时。我的问题是:为什么不使用 uint
C++ 标准是否保证: sizeof(uint8_t) <= sizeof(uint16_t) <= sizeof(uint32_t) <= sizeof(uint64_t) sizeof(uint_
我正在尝试编译一个使用 cstdint 的应用程序。由于 Apple 已弃用 gcc,我想尝试使用 clang 编译它,但出现错误: fatal error: 'cstdint' file not f
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我正在用 C++ 构建一个项目,但遇到了一些标准库问题。 当我使用 uint_t 系列类型时,编译器显示一条错误消息。 例如,当我声明一个 uint_8 类型的变量时,它在 vim 中显示错误 uin
当使用 -fmodules 编译时,以下简单的测试用例文件给我一个编译时错误,提示来自 Clang 的 github 镜像的“master” ,使用如下所示的命令。我想知道这是否是 Clang 的新实
什么会导致这些错误?我在 Xcode 中添加了一个空项目,在 Header Search Paths 中添加了/usr/local/lib,并添加了一些 opencv 库。建筑给出了这些错误: 更新
是否有可能,至少在理论上,cstdint typedef 绑定(bind)到某些实现特定类型 std::numeric_limits 不是专门用于? 根据http://www.cplusplus.co
我正在使用 Keil uVision4 在 STM32F2 设备上进行开发。我正在尝试使用 C++,这应该可以通过 uVision 工具链提供的 armcc(如果我错了请纠正我)实现。但是 uVisi
今天我正在尝试在 cstdint 头文件中定义的一些类型:std::uint16_t, std::uint_least16_t 等等.. 我认为它们非常有用,因为您确切地知道或至少知道它们有多大,这与
早上好 我正在尝试执行以下操作: #include //Boost for sparse and cstdint #include #include #include int main(){
我是一名优秀的程序员,十分优秀!