我仍然是NetBeans的新手,我正在用C ++编写类的代码。我目前在我的第三个项目,我遇到了一个错误,我似乎无法在尝试编译+运行我的项目时解决。我已经对我的代码进行了四倍检查,甚至从以前的项目中复制代码。我尝试过退出,重新启动计算机,然后重新启动NetBeans。我在我的代码上运行了CppCheck,但没有发现任何错误。
错误消息:
build/Debug/MinGW-Windows/main.o: In function `main':
C:/Users/Martin/Documents/NetBeansProjects/Lab3/main.cpp:52: undefined reference to `Dictionary::Dictionary()'
C:/Users/Martin/Documents/NetBeansProjects/Lab3/main.cpp:52: undefined reference to `Dictionary::~Dictionary()'
我尝试从之前的项目中复制代码,即使使用与之前项目完全相同的代码,它仍然存在这个问题。基本上,构建无法识别Dictionary类。
我可以检查哪些内容可能导致此问题?我可以检查任何模糊(甚至明显)的设置?我应该开始一个新项目并复制我的代码吗?
编辑:添加main():
#include <cstdlib>
#include <iostream>
#include "Dictionary.h"
using namespace std;
/*
* argv[1] dictionary file
* argv[2] boggle board file
* argv[3] output file
*/
int main(int argc, char** argv) {
if (argc > 3) {
Dictionary dict;
dict.loadDictFile(argv[1]);
} else {
cout << "Not enough arguments. Needed: ./lab3 [dictionary file] "
"[board file] [output file]" << endl;
}
return 0;
}
和Dictionary.h:
#ifndef DICTIONARY_H
#define DICTIONARY_H
#include <string>
#include <set>
using namespace std;
class Dictionary {
public:
Dictionary();
Dictionary(const Dictionary& orig);
virtual ~Dictionary();
virtual void loadDictFile(char * fileName);
virtual bool find(string word);
private:
set<string> dict;
set<string> fullDictionary; // Contains all words, not just those 4+ char long.
};
#endif /* DICTIONARY_H */
和Dictionary.cpp:
#include "Dictionary.h"
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <string>
#include <set>
//using namespace std;
Dictionary::Dictionary() {
}
Dictionary::Dictionary(const Dictionary& orig) {
dict = orig.dict;
fullDictionary = orig.fullDictionary;
}
Dictionary::~Dictionary() {
}
void Dictionary::loadDictFile(char* fileName) {
ifstream infile;
infile.open(fileName);
if (infile) {
while(!infile.eof()) {
string line;
getline(infile, line);
fullDictionary.insert(line);
if (line.size() > 3) {
dict.insert(line);
}
}
} else {
cout << "Dictionary File not loaded: " << fileName << endl;
}
}
bool Dictionary::find(string word){
if (dict.find(word) != dict.end()) {
return true;
} else {
return false;
}
}
答案 0 :(得分:1)
发现我的问题。 Netbeans并不认为Dictionary类是我项目的一部分,因此它没有编译Dictionary.cpp。我通过右键单击Project
文件夹并使用Source Files
菜单选项将其添加到Add existing item...
窗口中。现在编译得很好。
如果我使用Netbean的New File
接口并专门添加到项目中,有谁知道为什么不会添加该类?