1

我不明白我做错了什么。这是一个非常简单的程序,我用来练习使用头文件、类和构造函数。它说我没有丢失 Header2.cpp 中函数 getValue() 的返回类型。我不知道如何解决它。有任何想法吗?

测试.cpp

#include <iostream>
#include <conio.h>
#include "Header2.h"

int main()
{
    Thing Implement(1);
    std::cout << "The truth value is: " << Implement.getValue() << std::flush << "/n";

    _getch();
    return 0;
}

Header2.h

#ifndef Object_H_
#define Object_H_

class Thing
{
public:
    Thing(int a);

int getValue();
private:
int truthValue;
};

#endif // Object_H_

Header2.cpp

#include <iostream>
#include "Header2.h"

Thing::Thing(int a)
{
if (a != 0 || a != 1)
{
    std::cout << "Improper truth value." << std::flush;
}
else
{
    truthValue = a;
}
};

Thing::getValue()
{
return truthValue;
};
4

2 回答 2

7

你缺少一个int

int Thing::getValue()
{
return truthValue;
};
于 2013-11-11T00:57:37.323 回答
4
Thing::getValue()
{
return truthValue;
};

应该:

int Thing::getValue()
{
return truthValue;
};
于 2013-11-11T00:56:58.347 回答