#39;uint32_t#39; identifier not found error(uint32_t 标识符未找到错误)
问题描述
我正在将代码从 Linux C 移植到适用于 Windows 的 Visual C++.
I'm porting code from Linux C to Visual C++ for windows.
Visual C++ 不知道 #include
Visual C++ doesn't know #include <stdint.h> so I commented it out.
后来,我发现了很多 'uint32_t': identifier not found 错误.怎么解决?
Later, I found a lot of those 'uint32_t': identifier not found errors. How can it be solved?
推荐答案
该类型定义在 C 头文件 中,它是 C++11 标准的一部分,但不是C++03 中的标准.根据标题中的维基百科页面,它直到 VS2010 才随 Visual Studio 一起发布.
This type is defined in the C header <stdint.h> which is part of the C++11 standard but not standard in C++03. According to the Wikipedia page on the header, it hasn't shipped with Visual Studio until VS2010.
与此同时,您可能可以通过添加映射 typedef 来伪造自己的标头版本library/29dh1w7z.aspx" rel="noreferrer">Microsoft 的自定义整数类型 到 C 期望的类型.例如:
In the meantime, you could probably fake up your own version of the header by adding typedefs that map Microsoft's custom integer types to the types expected by C. For example:
typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
/* ... etc. ... */
希望这有帮助!
这篇关于'uint32_t' 标识符未找到错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:'uint32_t' 标识符未找到错误
基础教程推荐
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- CString 到 char* 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
