在C ++代码中获取虚拟值而不是预期值

时间:2019-02-09 21:23:20

标签: c++ eclipse iostream

我在理解为什么我的代码为我提供一些虚拟值时遇到了问题。

有人可以帮我找出我的错在哪里,是什么原因?

#include <stdio.h>
#include <iostream>

class mypair
{
public:
    int a,b;

public:

    int print (int first , int second)
    {
        a = first;
        b = second;
        std::cout<<a <<" hello "<<b;
    }

    int getmax();
};

int mypair ::getmax()
{
    int res;
    res = (a>b)?a:b;
    std::cout<<res;
    return res;
}

int main ()
{
    mypair abc;

    std::cout<<abc.print(5,6);
    std::cout<<abc.getmax();
}

1 个答案:

答案 0 :(得分:4)

print()不返回任何值,但是期望返回int。这是UB,您的虚拟值是由此引起的。

此外,在print()getmax()中,您都将输出发送到cout。在getmax()的情况下,此输出将立即作为返回值的输出,从而使相同的数字显示两次,没有任何空格或分隔符。