gpt4 book ai didi

c++ - 在 C++ 中更改引用

转载 作者:行者123 更新时间:2023-11-28 00:59:05 25 4
gpt4 key购买 nike

来自 C++ 常见问题解答

“如何重新设置引用以使其引用不同的对象?”

但是当我这样做时,它编译并执行得很好。

    int f = 5;
int y =4;
int& u = f;
u = y;
B& bRef = B();
bRef = B();

这段代码在我的 main() 函数中。

C++ 常见问题链接 https://isocpp.org/wiki/faq/references#reseating-refs

最佳答案

您无需重新设置引用,只需分配给引用的对象即可。

#include <iostream>

struct X{
void operator=(X const&){
std::cout << "Woops, assignment!\n";
}
};

int main(){
X x, y;
X& rx = x;
rx = y;
}

Guess what this prints.

关于c++ - 在 C++ 中更改引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9695657/

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