错误“C ++在定义方法时需要所有声明的类型说明符”

时间:2013-11-05 22:12:10

标签: c++ class oop header-files

我对C ++比较陌生(所以请尽量保持答案简单!),我无法理解为什么会收到错误: C++ requires a type specifier for all declarations whilst defining methods.

我正在尝试编写一个简单的程序来逐行读取文本文件,将值存储到数组中。但是,当我尝试在.cpp文件中声明方法时,我遇到了一个问题。请在下面找到代码。

StringList.h

#ifndef StringListH
#define StringListH

#include <vector>
#include <string>

class StringList {
public:
     StringList();
     ~StringList();
     void PrintWords();
private:
     size_t numberOfLines;
     std::vector<std::string> str;
};

#endif

StringList.cpp

#include "StringList.h"
#include <fstream>
#include <istream>
#include <algorithm> // std::copy
#include <iterator>  // istream_iterator

using namespace std;

StringList::StringList()
{
    ifstream myfile("input.in");
    if (myfile.is_open())
    {
        copy(
            istream_iterator<string>(myfile),
            istream_iterator<string>(),
            back_inserter(str));
    }
    numberOfLines = str.size();
}

StringList::~StringList(){
    //Deconstructor
}

// Error Happens Here
StringList::PrintWords(){
    //Print My array
}

我google搜索无济于事,我还不太明白如何阅读C ++的正确文档,所以我有点卡住了。到目前为止,我已经写了大约3或4个(简单的)面向对象的程序,我从来没有遇到过这个问题。如果它有助于我使用Xcode,但我在eclipse中得到了同样的错误。

似乎任何方法,无论返回类型,名称,我的头文件中定义的参数都给出了这个错误 - 但是构造函数没问题。如果删除PrintWords(),项目构建就好了。

任何指针都将非常感谢!

3 个答案:

答案 0 :(得分:21)

您将其声明为void,但您忘记将其放入定义中。应该是:

void StringList::PrintWords()

答案 1 :(得分:3)

您的会员功能PrintWords原型为:

void PrintOn();

表示它返回void。当你在其他地方实现你的功能时,你仍然必须提供你错误地遗漏的返回类型:

/* void */ StringList::PrintOn() { ... }

答案 2 :(得分:2)

在行前放置一个void,为您提供问题。

即使感觉多余,您也必须在声明和实现中指定返回类型。