我有三个简单的文件:
一个类的头文件
> cat myhh.hh
#include<iostream>
class helloworld
{
string str;
public:
void start(string &);
void stop(string &);
};
其对应的cc文件
> cat myhh.cc
#include<iostream>
#include "myhh.hh"
using namespace std;
void helloworld::start(string &str1)
{
cout<< ""function started"<<endl;
}
void helloworld::stop(string &str2)
{
cout<< ""function stopped"<<endl;
}
现在主要功能:
> cat mymain.cc
#include<iostream>
#include "myhh.hh"
int main()
{
helloworld obj;
obj.start(std::string("XXXX"));
obj.stop(std::string("XXXX"));
}
>
我的主要意图是用这 3 个文件生成 a.out,当我执行它时它应该打印:
function started
function stopped
我试图编译,但我得到以下错误。
> CC mymain.cc
Undefined first referenced
symbol in file
void helloworld::stop(std::basic_string<char,std::char_traits<char>,std::allocator<char> >&) mymain.o
void helloworld::start(std::basic_string<char,std::char_traits<char>,std::allocator<char> >&) mymain.o
ld: fatal: Symbol referencing errors. No output written to a.out
>
我确信我没有掌握正确的基础知识。但这只是我试图学习编译过程的东西。有人可以帮忙吗?