我创建了三个简单的c ++文件,如下所示: rtt_hello.hpp
#ifndef RTT_HELLO_HPP
#define RTT_HELLO_HPP
#include<iostream>
class displayer
{
public:
void display();
};
#endif
然后类实现displayer.cpp
#include <iostream>
#include "rtt_hello.hpp"
void displayer::display()
{
std::cout<<"Hello";
}
最后主程序rtt_hello.cpp.I没有main,因为我想在不同的应用程序中使用该对象。
#include<iostream>
#include "rtt_hello.hpp"
displayer message1;
message1.display();
现在当我编译它时,我得到了错误
sambeet@Holmes ~/NewRockPort/x86/Build/rock/rtt_test $ /home/sambeet/NewRockPort/x86/Install/rtems/4.11.0-rc3/bin/i386-rtems4.11-g++ rtt_hello.cpp displayer.cpp -Ihome/sambeet/NewRockPort/x86/Build/rock/rtt_test/
rtt_hello.cpp:5:1: error: 'message1' does not name a type
message1.display();
^
我创建了标题并且还包含它,那为什么会发生这个错误?
答案 0 :(得分:5)
您不能将随机代码放在文件中(在任何函数之外)。在顶层,您只能声明/定义东西。像message1.display()
这样的表达式需要成为函数的一部分。