文件路径./ ../
1.说明
/ 绝对路径
./ 加不加都一样,就是指当前目录
../ 表示当前目录的上级目录,即当前的父目录。
2.举例
node1_1.h的绝对路径是: /filepath/node/node1
/*----------------------code---------------------------*/
#ifndef NODE1_H
#define NODE1_H
#include <iostream>
using namespace std;
# include "../node.h"
class node1
{
private:
/* data */
public:
node1(/* args */) { cout << "node1::node1()" << endl; }
~node1() { cout << "node1::~node1()" << endl; }
};
#endif
/* 路径
1. 如果node1_1.h想包含node1_2.h,则:
# include "./node1_2.h" 或者 # include "node1_2.h"
因为node1_1.h和node1_2.h同级
2. 如果node1_1.h想包含node.h,则:
# include "../node.h"
因为node.h和node1_1.h的父目录同级
3. 如果node1_1.h想包含node.h,则:
# include "../../test1.h"
因为node.h和node1_1.h的父目录的父目录同级
4. 如果test.cpp想包含node1_1.h,则:
#include "node/node1/node1_1.h"
*/