繁体   English   中英

将类分为.h和.cpp文件时出现“未命名类型”错误

[英]'Does not name a type' error while separating class into a .h and .cpp file

我创建了三个简单的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();
 ^

我创建了标头并将其包含在内,然后为什么会发生此错误?

您不能只将随机代码放在文件中(任何函数之外)。 在顶层,您只能声明/定义内容。 message1.display()这样的表达式需要成为函数的一部分。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM