本文介绍了#include文件存储在哪里?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

这里有一个新手问题.在常见的C ++代码中,我们看到:

#include< iostream>
#include
#include

我可以知道这些cpp文件在哪里隐藏或存储吗?我只是想知道其中包含的工作方式,以及它们在哪里检索文件?

谢谢!
Chinho

Hi guys,

A newbie question here. In common C++ codes, we see:

#include <iostream>
#include
#include

May I know where are these cpp files hidden or stored? I just wanted to know how this include works, and where they retrieve the files?

Thanks!
Chinho

推荐答案




这篇关于#include文件存储在哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 17:11