编辑:由于下面的建议解决了这个问题。将评估()的返回类型从 int 更改为 void。
我正在学习如何使用课程,但遇到了问题。我不断得到一个输出,上面写着:
0
They are not equal.
4469696
最后一个数字是从哪里来的?它应该在该行之后的某个地方
std::cout << Thing.evaluation(Thing.getValue()) << std::endl;
但我看不到任何可能输出该值的东西。是内存泄漏吗?
#include <iostream>
#include <conio.h>
class classTest
{
public:
int equivalency(int x, int y)
{
if (x == y)
{
value = 1;
} else
{
value = 0;
}
}
int evaluation(int z)
{
if (z == 0)
{
std::cout << "They are not equal." << std::endl;
} else
{
std::cout << "They are equal." << std::endl;
}
}
int getValue()
{
return value;
}
private:
int value;
};
int main()
{
int a = 0, b = 0;
classTest Thing;
std::cout << "Enter two numbers for comparison." << std::endl;
std::cin >> a >> b;
Thing.equivalency(a, b);
std::cout << Thing.getValue() << std::endl;
std::cout << Thing.evaluation(Thing.getValue()) << std::endl;
getch();
return 0;
}