Name,Papers,Books未在此范围内声明非成员函数C ++

时间:2016-01-07 10:52:49

标签: c++ qt non-member-functions

当我声明非成员函数listOverview();

时出错
  void listOverview()
  {

  std::cout << "Overview of books of " << name << std::endl;
  for (auto p : books)
    {
    std::cout << p.toString() << std::endl;
    }
  std::cout << "Overview of papers of " << name << std::endl;
  for (auto p : papers)
    {
    std::cout << p.toString() << std::endl;
    }
  }

编译器说在这个范围内没有声明名称文件和书籍。我尝试了几个像制作函数朋友的东西,但后来在主要它说类Biblioagraphy没有名为listOverview()的成员;

这是我的标题:

#ifndef BIBLIOGRAPHY_H
#define BIBLIOGRAPHY_H
#include <string>
#include <vector>


class Book;
class Paper;

class Bibliography
  {
  public:
    Bibliography(const std::string & aName);

    void addBook(const Book * newBook);
    void addPaper(const Paper *newPaper);
    int giveNrOfBooks() const {return books.size();}
    int giveNrOfPapers() const {return papers.size();}
    void listOverview();
//    std::vector<std::shared_ptr<Publication>> givePubWithIFHigherThan(float value) const;
//    void replaceIFofJournalsMatching(const std::regex journal, float newIF);
  private:
    const std::string name;
    std::vector<const Book *> books;
    std::vector<const Paper *> papers;

  };

#endif // BIBLIOGRAPHY_H

2 个答案:

答案 0 :(得分:1)

当您要定义属于您班级的功能时。你需要明确地做到这一点。

而不是

void listOverview()

应该是

void Bibliography::listOverview()

答案 1 :(得分:1)

如果listofOverview是一个自由函数,那么内部声明books或参数传递{和NO,你不想使用全局变量)。

如果你认为它是一个班级成员,你应该写void Bibliography::listOfOverview(),但这是一个不是免费功能的班级成员。