D:\ZBY\CodeBase\eigen-3.4.0\Eigen\src\Core\MathFunctions.h:400: error: conflicting declaration of C function 'long long int std::abs(long long int)' EIGEN_USING_STD(abs); ^
时间: 2024-01-24 08:18:49 浏览: 174
这个错误是因为在 `MathFunctions.h` 文件中有一行代码 `EIGEN_USING_STD(abs);`,它会使用 `std` 命名空间中的 `abs()` 函数。但是,在 C++11 标准中,`std::abs()` 函数被重载为接受不同类型的参数,包括 `long long int`。因此,在编译器中出现了冲突的声明。
要解决这个问题,你可以尝试以下几种方法:
1. 升级你的编译器到支持 C++11 标准的版本。
2. 修改 `MathFunctions.h` 文件中的代码,将 `EIGEN_USING_STD(abs);` 改为 `using std::abs;`。这样可以避免使用 `std` 命名空间中的 `abs()` 函数,而是直接使用全局命名空间中的 `abs()` 函数。
3. 在使用 `MathFunctions.h` 文件的代码中,添加 `#undef abs` 宏定义来取消 `std::abs()` 函数的定义。这样可以避免冲突的声明。但是,这种做法可能会影响到其他代码中对 `abs()` 函数的使用,因此需要谨慎使用。
相关问题
D:\ZBY\CodeBase\eigen-3.4.0\Eigen\src\SVD\BDCSVD.h:416: error: conflicting declaration of C function 'long long int std::abs(long long int)' using std::abs; ^
这个错误是因为在你的代码中使用了 `std::abs` 函数,而该函数已经被 `BDCSVD.h` 文件中的另一个声明所覆盖。解决方法有两种:
1. 使用 `std::fabs` 代替 `std::abs`。
2. 在 `#include` `BDCSVD.h` 之前加上 `#undef abs`,这样可以取消 `BDCSVD.h` 中对 `abs` 的定义。
D:\ZBY\CodeBase\eigen-3.4.0\Eigen\src\LU\FullPivLU.h:332: error: conflicting declaration of C function 'long long int std::abs(long long int)' using std::abs; ^
这个错误是因为在 FullPivLU.h 文件中使用了 `using std::abs`,而 `std::abs` 与 C 语言的 `abs` 函数重名了,导致冲突。解决这个问题的方法是使用命名空间 `std::` 来明确使用 C++ 标准库中的 `abs` 函数,而不是使用 `using` 语句。你可以在 FullPivLU.h 文件中将 `using std::abs` 改为 `using namespace std;` 或者直接使用 `std::abs` 替代原来的 `abs`。
阅读全文