如何在这个语句中使用 static_cast
How to use static_cast in this statement
我有声明:
amount *= factor;
amount
定义为整数,而 factor
定义为双精度。所以 amount
和 factor
相乘的结果是 double
类型。我想使用 static_cast
来确保生成的 amount
变量转换为 int
.
在这种情况下我该怎么做?
这里不需要cast,会自动转换!!!
我有声明:
amount *= factor;
amount
定义为整数,而 factor
定义为双精度。所以 amount
和 factor
相乘的结果是 double
类型。我想使用 static_cast
来确保生成的 amount
变量转换为 int
.
在这种情况下我该怎么做?
这里不需要cast,会自动转换!!!