我有这个奇怪的问题 - 我有定义和声明的函数,没有拼写错误,没有外部库,没有命名空间失败,没有模板,没有任何其他线程提到 - 但我仍然得到函数调用的'未定义符号' 。
我有以下代码:
在一个.cpp文件中:
string print(const FanBookPost& post) {
std::stringstream ss;
// notice! post.getOwner.getId! owner needs to be fan
ss << post.getOwner().getId() << ": " << post.getContent() << "(" << post.getNumLikes()
<< " likes)";
return ss.str();
}
该文件包含FanBookPost.h。
然后我在FanBookPost.h中:
class FanBookPost {
private:
Fan owner;
std::string content;
int numOfLikes;
int seqNum;
public:
// constructors
int getNumLikes();
std::string getContent();
Fan getOwner();
int getNumLikes() const;
std::string getContent() const;
Fan getOwner() const;
};
正如你所看到的,我有const和常规版本只是准备好了。在第一个.cpp文件中,“post”函数得到的是const。
我在FanBookPost.cpp中实现了这些功能:
class FanBookPost {
private:
Fan owner;
std::string content;
int numOfLikes;
int seqNum;
public:
//constructors
int getNumLikes() {
// code
}
std::string getContent() {
// code
}
Fan getOwner() {
// code
}
int getNumLikes() const {
// code
}
std::string getContent() const {
// code
}
Fan getOwner() const {
// code
}
};
我试图谷歌的答案和搜索stackoverflow线程,但正如我所说,没有任何明显的问题可以找到。请帮我解决这个'未定义的符号'问题,因为它已经让我疯狂了。
答案 0 :(得分:5)
我在FanBookPost.cpp中实现了这些功能
不,你没有!您已经重新定义了类,而不仅仅是定义函数。这打破了一个定义规则,所以各种各样的事情都可能出错。特别是,函数是内联的,因此它们不可用于其他源文件;因此你的错误。
源文件看起来应该更像
#include "FanBookPost.h" // include the class definition
// Define the member functions
int FanBookPost::getNumLikes() {
// code
}
// and so on
或者,您可以在标题中定义类定义中的函数,或者在使用inline
说明符的类定义之后定义函数;如果它们非常小,这可能是合适的,因为它为编译器提供了更好的优化机会。但在任何一种情况下,您只能在标题中定义一次类。
答案 1 :(得分:0)
当您使用对const
的{{1}}引用时,您需要FanBookPost
为getOwner()
:
const
(无论如何,如果它是一个简单的吸气剂,它应该是。)