gpt4 book ai didi

C++:引用地址?

转载 作者:太空狗 更新时间:2023-10-29 19:44:45 26 4
gpt4 key购买 nike

我对 C++ 奥秘的了解有点粗糙。假设我有以下类(class):

struct Bar {
int x;
};

class Foo {
Bar& bar;
public:
Bar* getRealAddress() { return &bar; }
Foo(Bar& _bar) : bar(_bar) {}
};

Bar bar1;
Foo foo1(bar1);

foo1.getRealAddress() 会返回与 &bar1 相同的值吗?

最佳答案

Will foo1.getRealAddress() return the same value as &bar1?

是的。

基本上,引用是除名称之外的所有内容的原始值。这是一个别名。

关于C++:引用地址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4890654/

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