在我的 C++ 函数中,我正在尝试这样做,cout <<getVoxelWidth();
但这是我遇到的 2 个错误
error C2593: 'operator <<' is ambiguous
和
error C3861: 'getVoxelWidth': identifier not found, even with argument-dependent lookup
我已经包含了getVoxelWidth
位于的 .h 文件,这是它的定义方式。
const double getVoxelWidth() const { return getVoxelDim("voxel_size_x"); }