Chinaunix首页 | 论坛 | 博客
  • 博客访问: 617489
  • 博文数量: 172
  • 博客积分: 10010
  • 博客等级: 上将
  • 技术积分: 1252
  • 用 户 组: 普通用户
  • 注册时间: 2009-06-29 22:26
文章分类

全部博文(172)

文章存档

2011年(6)

2010年(7)

2009年(159)

我的朋友

分类: LINUX

2009-09-13 22:24:13

类型      比特数       有效数字                数值范围
float 32 6-7 -3.4*10(-38)~3.4*10(38)
double 64 15-16 -1.7*10(-308)~1.7*10(308)
long double 128 18-19 -1.2*10(-4932)~1.2*10(4932)

c++中的浮点数一般采用double。例如常数1500.1的默认转换类型为double而不是float。可参考下列程序:

#include <iostream>
using namespace std;

float sample_function(float i);
double sample_function(double i);

int main()
{
  cout << sample_function(1500.1) << " ";     // calls sample_function(double)
  return 0;
}

float sample_function(float i)
{
  return i;
}

double sample_function(double i)
{
  return -i;
}

阅读(2472) | 评论(0) | 转发(0) |
0

上一篇:GCC 内联汇编

下一篇:C/C++ 混合编程

给主人留下些什么吧!~~