当前位置:  开发笔记 > 编程语言 > 正文

C99 stdint.h头文件和MS Visual Studio

如何解决《C99stdint.h头文件和MSVisualStudio》经验,为你挑选了6个好方法。

令我惊讶的是,我刚刚发现MS Visual Studio 2003向上缺少C99 stdint.h.我确定他们有他们的理由,但有谁知道我可以在哪里下载副本?如果没有这个头文件,我就没有uint32_t等有用类型的定义.



1> Rob..:

事实证明,您可以从以下位置下载此标头的MS版本:

https://github.com/mattn/gntp-send/blob/master/include/msinttypes/stdint.h

便携式可以在这里找到:

http://www.azillionmonkeys.com/qed/pstdint.h

感谢Software Rambling的博客.


一个公共领域(不是麻省理工学院/ BSD许可证 - 你甚至不需要保留版权归属)stdint.h for MSVC(MinGW略有修改版本):http://snipplr.com/view/18199/ stdinth /

2> Nicholas Man..:

只需自己定义它们.

#ifdef _MSC_VER

typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;

#else
#include 
#endif


我错过了什么或不应该是typedef unsigned __int64 uint64_t; ?

3> Ashwin Nanja..:

更新:Visual Studio 2010Visual C++ 2010 Express都有stdint.h.它可以在C:\Program Files\Microsoft Visual Studio 10.0\VC\include


以及在`std ::`中喜欢它的C++用户的.

4> Adam Mitz..:

Visual Studio 2003 - 2008(Visual C++ 7.1 - 9)并不声称与C99兼容.(感谢rdentato的评论.)



5> Nemanja Trif..:

Boost包含cstdint.hpp头文件以及您要查找的类型:http://www.boost.org/doc/libs/1_36_0/boost/cstdint.hpp


目前尚不清楚 - 他在Visual Studio中询问C99标题,而没有指定他使用的是哪种语言.无论如何它不能是C99,因为微软不支持它.

6> Mike Dimmick..:

微软不支持C99,也没有宣布任何计划.我相信他们打算跟踪C++标准,但认为C有效地过时,除非作为C++的一个子集.

Visual Studio 2003及更高版本中的新项目默认设置了"编译为C++代码(/ TP)"选项,因此任何.c文件都将编译为C++.

推荐阅读
黄晓敏3023
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有