在 c++ 中包含来自不同文件夹的文件

问题描述 投票:0回答:0

我只是想用一个例子来简短,因为我觉得这很容易理解。

我在一个我们称之为“class.hpp”的文件中

我正在尝试访问名为 include.hpp 的文件中的内容

这里是一个快速文件树

./ProgramFolder/headers/class.hpp <- We are here

./ProgramFolder/content/include/library/include.hpp <- We are trying to get to here

我正在为此使用

#include "filePath"

我更愿意使用相对映射来访问include.hpp的内容,因为超出ProgramFolder的任何东西都是未知的。

c++ relative-path replit
© www.soinside.com 2019 - 2024. All rights reserved.