显式类型缺失(假定为int)(Explicit type is missing (int assum

2019-10-18 23:14发布

我不明白我在做什么错。 这是一个非常简单的程序,我做练习用头,类和构造函数。 它说,我不缺少功能的getValue()在Header2.cpp返回类型。 我不知道如何解决它。 有任何想法吗?

TEST.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;
};

Answer 1:

你缺少一个int

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


Answer 2:

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

应该:

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


文章来源: Explicit type is missing (int assumed)