Why does dividing two int not yield the right value when assigned to double?(为什么将两个 int 分配给 double 时不会产生正确的值?)
问题描述
为什么会出现在下面的代码片段中
How come that in the following snippet
int a = 7;
int b = 3;
double c = 0;
c = a / b;
c
最终的值为 2,而不是预期的 2.3333.如果 a
和 b
是双精度数,那么答案确实会变成 2.333.但肯定是因为 c
已经是一个 double 它应该与整数一起使用?
c
ends up having the value 2, rather than 2.3333, as one would expect. If a
and b
are doubles, the answer does turn to 2.333. But surely because c
already is a double it should have worked with integers?
那么为什么 int/int=double
不起作用?
So how come int/int=double
doesn't work?
推荐答案
这是因为你使用的是整数除法版本的operator/
,需要2个int
s并返回一个 int
.为了使用返回 double
的 double
版本,必须将至少一个 int
显式转换为 双
.
This is because you are using the integer division version of operator/
, which takes 2 int
s and returns an int
. In order to use the double
version, which returns a double
, at least one of the int
s must be explicitly casted to a double
.
c = a/(double)b;
这篇关于为什么将两个 int 分配给 double 时不会产生正确的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么将两个 int 分配给 double 时不会产生正确的值?
基础教程推荐
- 设计字符串本地化的最佳方法 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01