dev-cpp 和 Microsoft Visual C 的区别数学.h
前几天,我在做一个VC++的项目。我发现,VC++ 中的 math.h 与 dev-cpp math.h 有很大不同。特别是它的 round 函数,它不存在于 Visual C++ math.h 中,但包含在 dev-cpp math.h 中。
现在我想问一下,这是否是由于myngw中的dev-cpp根源引起的?或者是否是不同的标准(ISO)
谢谢大家的回复。
a few days ago, I worked on project in VC++. I found out, that math.h in VC++ differs much from dev-cpp math.h. Particulary its round function, that is not present in Visual C++ math.h, but is contained in dev-cpp math.h.
Now I would like to ask, whether it this caused by dev-cpp roots in myngw? Or whether its a different standard (ISO)
Thank everyone for response.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
round()
是 C99 标准的一部分,Visual Studio 并不完全支持。但您可以轻松编写自己的实现:round()
is part of the C99 standard, which Visual Studio doesn't fully support. But you could easily write your own implementation: