编译polygone.hpolygone.cc会产生错误:

polygone.cc:5:19: error: expected constructor, destructor, or type conversion before ‘(’ token

码:
//polygone.h
# if !defined(__POLYGONE_H__)
# define __POLYGONE_H__

# include <iostream>

class Polygone {

    public:
        Polygone(){};
        Polygone(std::string fichier);

};

# endif


//polygone.cc
# include <iostream>
# include <fstream>
# include "polygone.h"

Polygone::Polygone(string nom)
{
    std::ifstream fichier (nom, ios::in);
    std::string line;

    if (fichier.is_open())
    {
        while ( fichier.good() )
        {
            getline (fichier, line);
            std::cout << line << std::endl;
        }
    }
    else
    {
        std::cerr << "Erreur a l'ouverture du fichier" << std::endl;
    }
}

//ifstream fich1 (argv[1], ios::in);

我的猜测是编译器没有将Polygone::Polygone(string nom)识别为构造函数,但是,如果确实如此,我不知道为什么。

有什么帮助吗?

最佳答案

header 中的第一个构造函数不应以分号结尾。 header 中缺少#include <string>。 .cpp文件中的string不符合std::的条件。这些都是简单的语法错误。更重要的是:您应该在不使用引用的情况下使用。同样,您使用ifstream的方式也被破坏了。我建议在尝试使用C++之前先学习它。

让我们解决这个问题:

//polygone.h
# if !defined(__POLYGONE_H__)
# define __POLYGONE_H__

#include <iostream>
#include <string>

class Polygone {
public:
  // declarations have to end with a semicolon, definitions do not
  Polygone(){} // why would we needs this?
  Polygone(const std::string& fichier);
};

# endif


//polygone.cc
// no need to include things twice
#include "polygone.h"
#include <fstream>


Polygone::Polygone(const std::string& nom)
{
  std::ifstream fichier (nom, ios::in);


  if (fichier.is_open())
  {
    // keep the scope as tiny as possible
    std::string line;
    // getline returns the stream and streams convert to booleans
    while ( std::getline(fichier, line) )
    {
      std::cout << line << std::endl;
    }
  }
  else
  {
    std::cerr << "Erreur a l'ouverture du fichier" << std::endl;
  }
}

10-01 02:41