标签: c++ casting static-cast
我有声明: amount *= factor;
amount *= factor;
amount定义为整数,其中factor定义为double。因此,amount和factor的乘法结果将为double类型。我想使用static_cast来确保生成的amount变量转换为int。
amount
factor
double
static_cast
int
在这种情况下我该怎么办?
答案 0 :(得分:1)
你不需要在这里投,它会被自动转换!!!