int32_t 和 int64_t 转换问题

int32_t and int64_t Conversion Issues

在下面的代码行中,positive 是一个包含 int32_t 个元素的向量。

int32_t pos_accum = accumulate(positive.begin(), positive.end(), std::multiplies<int32_t>());

编译器生成以下似乎没有意义的错误:

No suitable conversion function from "std::multiplies<int32_t>" to "int32_t" exists

以及

'initializing': cannot convert from '_Ty' to 'int32_t'

最终目标是将答案存储在 int64_t 中,但尝试 static_cast<int64_t> 结果以类似错误告终。

知道这里的问题是什么吗?

接受二元运算符的std::accumulate的签名是

template< class InputIt, class T, class BinaryOperation >
constexpr T accumulate( InputIt first, InputIt last, T init, BinaryOperation op );

您缺少 init 参数,它表示累加的初始值。尝试

accumulate(positive.begin(), positive.end(), 1, std::multiplies<int32_t>());