gpt4 book ai didi

c++ - 引用的初始化

转载 作者:太空宇宙 更新时间:2023-11-04 15:52:50 25 4
gpt4 key购买 nike

我写了下面的代码,我期望得到5个6个6个6,但我得到的是 5 6 5 0。似乎“val”一开始就正确地获得了引用,但后来它丢失了。有人知道我的错误在哪里吗?

class Count {

public:
void add() {
val++;
}
void print() {
cout << val << endl;
}
Count(int c): val(c) {
}
private:
int &val;
};

int main() {

int c = 5;
Count teste(c);
teste.print();
teste.add();
teste.print();
cout << c << endl;
teste.print();
return 0;
}

最佳答案

你的构造函数应该通过引用而不是值来获取参数。

关于c++ - 引用的初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5179553/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com