求大佬!!!

文章讨论了一个C++程序,关于类A中常量和非常量成员函数`getValue()`在不同情况下的输出结果。当调用const版本时,输出带有withconst;非const版本则在后续调用时输出。修改输出语句顺序导致了输出顺序的变化。
摘要由CSDN通过智能技术生成

#include <iostream>
using namespace std;

class A
{
private:
    int w,h;
public:
    int getValue() const;
    int getValue();
    A(int x,int y)
    {
        this->h=x;
        this->w=y;
    }
    A()
    {}
};

int A::getValue() const
{
    cout<<"with const"<<endl;
    return w*h;
}

int A::getValue()
{
    cout<<"with none const"<<endl;
    return w*h;
}

void main()
{
    A const a(3,4);
    A b(3,6);   
cout<<a.getValue()<<endl;
cout<<b.getValue()<<endl;
}
这个代码的输出结果为:
wi th const
12
with none const
18


但是将代码中的
cout<<a.getValue()<<endl;
cout<<b.getValue()<<endl;修改为
cout<<a.getValue()<<endl<<b.getValue()<<endl;
输出结果则变为:
with none const
with const
12
18

为什么输出结果会变成这个样子呢?

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值