0

我最近将我的 Windows C++ 应用程序转换为 Linux c++ 应用程序,并使用带有 Debian 的 Windows 子系统交叉编译到 Linux。但是,我通过使用nlohmann的 json 库得到以下错误

no match for 'operator-' (operand types are '__gnu_cxx::__alloc_traits<std::allocator<double> >::value_type {aka double}' and 'nlohmann::basic_json<>::value_type {aka nlohmann::basic_json<>}')

例如,在我在 json 元素和 double 之间使用运算符的任何地方都会出现此错误。举个例子:

MSE_total += pow(ref.z[j*multiplier] - actual[j]["z"], 2) / pow(ref.z[j*multiplier], 2);

这是给出上述错误的行。我应该明确说明json中的变量类型吗?我该怎么做?

4

1 回答 1

0

没有采取. _ operator-nlohmann::basic_json我想那

ref.z[j*multiplier] - actual[j]["z"]

期望通过它的...actual[j]["z"]转换为它应该(在底层类型不匹配的情况下抛出)。doubleoperator ValueType()type_error.302

为什么不呢?我的赌注是 nlohmann 的 json 版本号与你的 windows 和 linux 版本不同。

解决方法:将该值转换为双精度( actual[j]["z"].get<double>())。

于 2019-02-12T14:32:40.277 回答