检查是否包含一个整数double类型的变量,而不是浮点 [英] Check double variable if it contains an integer, and not floating point

查看:155
本文介绍了检查是否包含一个整数double类型的变量,而不是浮点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的意思是这样的:

  double d1 =555;
  double d2=55.343

我希望能够告诉大家,D1是一个整数,而D2是没有的。有一个简单的方法来做到这一点在C / C ++?

I want to be able to tell that d1 is an integer while d2 is not. Is there an easy way to do it in c/c++?

推荐答案

使用 的std :: MODF

double intpart;
modf(value, &intpart) == 0.0

不要转换为 INT !数 1.0E + 300 是一个整数太你知道的。

Don't convert to int! The number 1.0e+300 is an integer too you know.

编辑:由于皮特Kirkham的所指出的,通过0作为第二个参数不是由标准保证正常工作,需要使用一个虚拟变量的,不幸的是,使得codea的少很多优雅

As Pete Kirkham points out, passing 0 as the second argument is not guaranteed by the standard to work, requiring the use of a dummy variable and, unfortunately, making the code a lot less elegant.

这篇关于检查是否包含一个整数double类型的变量,而不是浮点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆