该程序编译论文。以及在提到的段错误。
/*
* Testing of Vectors.
* Uses c++11 standard.
* gcc version 4.7.2
* compile with : g++ -std=c++11 -o vec vec.c++
*/
#include <iostream>
#include <string>
#include <vector>
#include <stdio.h>
#include <unistd.h>
using namespace std;
这堂课很好。
/* declare Person class. */
class Name {
std::string first;
std::string last;
public:
Name(void);
Name(std::string first, std::string last){
this->first = first;
this->last = last;
}
~Name();
std::string GetFirstName(){
return this->first;
}
std::string GetLastName(){
return this->last;
}
};
这堂课是我遇到问题的地方。
/* declare NamesVector class. */
class NamesVector {
std::vector<Name *> person_list;
public:
NamesVector(void);
~NamesVector(void);
virtual Name *getPerson(void);
virtual void addPerson(Name *);
virtual void Print(void);
virtual void FindPerson(std::string);
};
/* adds person to vector/list */
void NamesVector::addPerson(Name *n){
person_list.insert(person_list.begin(), n);
};
/* prints all persons */
void NamesVector::Print(){
for (auto v: person_list){
std::cout << v->GetFirstName() <<
" " << v->GetLastName() << std::endl;
}
};
/* main() */
int main(int argc, char **argv){
我试过了:NamesVector * nv = new NamesVector()在这里,它给出的是
错误:“同时未定义对`NamesVector :: NamesVector()的引用”
编译。
除此之外,我还尝试替换:
NamesVector * peopleList;与NamesVector peopleList;
(并在需要时对代码进行了适当的更改。)
并在编译时出现以下错误:
未定义对NamesVector :: NamesVector()的引用
未定义对`NamesVector :: ~~ NamesVector()的引用
/* pointer to person list */
NamesVector *peopleList;
/* pointer to a person */
Name *person;
/* instanseate new person */
person = new Name("Joseph", "Heller");
/* works ok */
std::cout << person->GetFirstName() << " "
<< person->GetLastName() << std::endl;
这是程序段错误的地方。有任何想法吗?
/* segfaults - Why!?! - insert into peopleList vector */
peopleList->addPerson(person);
peopleList->Print();
std::cout << std::endl << std::endl;
return EXIT_SUCCESS;
}
最佳答案
您必须为NamesVector类定义一个构造函数和一个析构函数:
// constructor
NamesVector::NamesVector() {
// create an instance of the vector
person_list = new Vector<Name *>();
}
// destructor
NamesVector::~NamesVector() {
// delete the instance of the vector
delete person_list;
}
定义构造函数和析构函数时,应该可以调用:
NamesVector *nv= new NamesVector().