当前位置: 技术问答>linux和unix
简单的c++在linux下 编译出错
来源: 互联网 发布时间:2015-10-10
本文导语: //hello.h文件 #ifndef helloH #define helloH class Hello { public: Hello(); void Display(); } #endif //hello.cpp文件 #include "hello.h" #include Hello::Hello() { } Hello::Display() { ...
//hello.h文件
#ifndef helloH
#define helloH
class Hello
{
public:
Hello();
void Display();
}
#endif
//hello.cpp文件
#include "hello.h"
#include
Hello::Hello()
{
}
Hello::Display()
{
coutDisplay()
改为
theHello.Display()
还有把
#include
改为
#include
using namespace std;
===============================
同意楼上
#ifndef helloH
#define helloH
class Hello
{
public:
Hello();
void Display();
}
#endif
//hello.cpp文件
#include "hello.h"
#include
Hello::Hello()
{
}
Hello::Display()
{
coutDisplay()
改为
theHello.Display()
还有把
#include
改为
#include
using namespace std;
===============================
同意楼上
|
错误信息贴出来试试看。
|
错误信息?
|
是啊 把错误信息贴出来