当前位置: 技术问答>linux和unix
月薪6k的面试题:写makefile 高手近来
来源: 互联网 发布时间:2015-12-28
本文导语: 整个程序的目的只是输出一个字符串“good” 提供文件有:first.h,first,cpp,second.h,second.cpp,main.cpp ----------first.h:----------- class first { public: void aa(); }; ----------first.cpp:---------- #include "third.h" #include ...
整个程序的目的只是输出一个字符串“good”
提供文件有:first.h,first,cpp,second.h,second.cpp,main.cpp
----------first.h:-----------
class first
{
public:
void aa();
};
----------first.cpp:----------
#include "third.h"
#include "first.h"
void first::aa()
{
fun();
}
----------second.h:-------------
void fun();
----------second.cpp:-----------
#include "third.h"
#include
void fun()
{
cout
提供文件有:first.h,first,cpp,second.h,second.cpp,main.cpp
----------first.h:-----------
class first
{
public:
void aa();
};
----------first.cpp:----------
#include "third.h"
#include "first.h"
void first::aa()
{
fun();
}
----------second.h:-------------
void fun();
----------second.cpp:-----------
#include "third.h"
#include
void fun()
{
cout