- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编译一个包含 >500 个类的大型项目。编译VS 2010后一直没有问题。在 Windows 下使用 g++ (Code::Blocks/Netbeans) 时,代码将无法编译并出现以下错误:
library/source/algorithms/file/../../algorithms/graph/../algebra/../spheredistance
/file.hpp:31:51: fatal error: ../../exception/ErrorOverflow.h: No such file or directory.
Compilation terminated.
但是,这个文件存在于指定的路径中。 Linux 版本工作正常。路径中的字符/或\无关紧要(已测试)。
如果我更改包含文件的顺序,上述错误就会消失,并且类似的错误会出现在代码的其他地方...
我认为代码中某处存在循环依赖或包含文件的错误顺序。
文件结构:
1).cpp文件
#include "file.h"
2).h文件
#ifndef file_H
#define file_H
template <typename T>
class Class
{
};
#include "file.hpp"
#endif
3).hpp文件
#ifndef file_HPP
#define file_HPP
#include "../../somefile.h"
template <typename T>
class Class
{
};
#endif
大多数头文件*.h 包含在*.hpp 文件中,但在某些*.h 文件中需要包含另一个*.h 文件。一个简短的示例说明了结果的四舍五入:
Orientation.h
#ifndef Orientation_H
#define Orientation_H
typedef enum
{
RoundOn, RoundOff
} TRound;
class Orientation
{
public:
template <typename T>
static short getOrientation( const T dx1, const T dy1, const T dx2, const T dy2, const TRound round = RoundOff );
};
某些类 Position: 方法给出四舍五入结果
#include "Orientation.hpp"
Position.hpp
#ifndef Position_H
#define Position_H
#include "../orientation/Orientation.h" //must be included for Rounding
class Position
{
public:
template <typename Point1, typename Point2>
static unsigned short getPosition ( const Point1 * p, const Point2 * p1, const Point2 * p2, const TRoundType round );
};
#include "Position.hpp"
#endif
请指教:
更新结果:
感谢大家提供有用的建议。
对不起,我完全错了。一个错误实际上是 在相对路径 包含字符..(双点)
重写所有 include 指令后一切正常。
最佳答案
However, this file exists in the specified path
不,它没有。
虽然您认为循环包含会导致一些误导性错误消息是正确的,但这不是其中之一。
要记住的一件事是,包含路径的解析是实现定义的 (2003:12.8/1),这可能就是您看到工具链之间不一致的原因。相对路径的使用特别奇怪。简化您的源代码树和包含路径,这个问题就会消失。
关于c++ - h和hpp问题,包含顺序错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6724062/
首先我安装了 Cmake 和 opencv。然后通过添加环境使用 mingw32-make 等在 QT 上安装 OpenCV。我将库包含在 .pro 文件中。我不知道为什么找不到这些包含。 image
我目前正在做一个 C++ 项目。 简而言之,我有 3 个类和一个 main.cpp 文件。 1) 列表类//使用一个 vector 2) 堆类 3) 树类//BST 为了正确组织自己,我将每个类分成单
这个问题在这里已经有了答案: What is the difference between #include and #include "filename"? (31 个答案) 关闭 7 年前。
我使用 c++ 程序使用 opencv 2.1 进行图像处理。该程序包含以下文件: #include "opencv2/core/core.hpp" #include "opencv2/imgproc
大多数 OpenCV 中的每个示例代码都以这些行(或类似的东西)开头: #include "opencv2/imgproc/imgproc.hpp" #include "opencv2/highgui
我正在使用 boost.python 将 C++ 对象暴露给 python。 我应该使用 #include boost/python.hpp 或 #include boost/Python.hpp ?
这个问题在这里已经有了答案: How does the compilation/linking process work? (5 个答案) Why have header files and .cp
大家好,我正在尝试使用我从源代码构建的 opencv-c++ API(版本 4.4.0)。它安装在/usr/local/中,我只是尝试使用以下代码加载和显示图像 - #include #includ
我是 重写我的 Windows C++ native 库 (自 2002 年以来一直在努力)考虑到公开发布。在过去的 10 年里,我一直是这 150 多个 KLOC 的唯一受益者,我觉得其他人也可能会
boost中有两个随机整数生成器,boost::uniform_int<>和 boost::random::uniform_int_distribution<> ,后者仅在 boost 1.47 之后
我正在用 cmake 编译 opencv 程序。 代码如下: 显示图像.cpp: #include #include using namespace cv; int main(int argc,
我想知道是否可以直接在 CMakeLists.txt 中包含头文件,而不是 cpp 或 hpp 文件。我正在做一个项目,所有 cpp 文件都需要包含一些 hpp 文件。我可以添加 #include "
有的程序有第一个,有的程序有第二个。两者有什么区别,我们什么时候使用它们? 最佳答案 我认为这是一个合理的问题。引自 OpenCV documentation : Headers layout In
我是 opencv 库的初学者。我已经在 Ubuntu 17.04 上安装了它,安装过程中的一切都很完美,一点错误都没有。我已经安装了 Opencv-master,构建了它,然后我下载了 opencv
我试图找到一个很好的例子来说明如何使用这些二进制宽字符版本的 boost 序列化内容。我拼凑了一些代码来尝试让它工作,但不幸的是,我在尝试编译它时遇到了链接器错误的轰炸。 这是我的代码,以防我做任何明
我正在尝试集成来自 nlohmann 的 json C++ 库,同时简单地将“single_include”文件复制到与我的 main.cpp 文件相同的目录中。根据集成 instructions #
我对 linux 或 c++ 几乎一无所知。 我通常按照这些说明在 ubuntu 12.10 上构建 boost http://piyushparkash.blogspot.com/2012/10/i
我试图使用features2d文件夹中存在的features2d.hpp函数来检测图像的某些特征。使用此头文件时代码崩溃。当我从nonfree文件夹使用具有相同名称的头文件时,它可以正常工作。有人能弄
我想使用 stitching mechanism来自 C++ 中的 OpenCV 库,但在安装 OpenCV 3.0 后,我在“opencv2”文件夹中看不到任何 stitcher.hpp 文件。它在
我正在尝试使用网络摄像头检测车道。我可以在开始时编译它并对其进行测试,但是在更改了我曾经使用的机器之后。 它不再工作了。给我一些错误。 以下是代码 int run() { bool pause
我是一名优秀的程序员,十分优秀!