我创建了三个简单的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。我没有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();
^
我创建了 header 并将其包含在内,那么为什么会发生此错误?
最佳答案
您不能只将随机代码放入文件中(任何函数之外)。在顶层,您只能声明/定义内容。像message1.display()
这样的表达式需要成为函数的一部分。