Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 .cpp 文件(文本)。我想获取包含(#include)到此文件的所有文件名的列表。最好的方法是什么?(需要用 C++ 实现)
gcc -M source.cpp
如果您不关心系统包含的内容,请替换-M为。-MM
-M
-MM
假设你有一个“find”或“grep”,大致如下:
g++ -E source.cpp | grep '\# 1 '