我最近将我的 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中的变量类型吗?我该怎么做?