gpt4 book ai didi

c++ - 函数的返回值未被识别为左值

转载 作者:太空狗 更新时间:2023-10-29 23:36:00 26 4
gpt4 key购买 nike

这是一个例子:

void foo(int*& x) {}

struct boo
{
int* z;
int* getZ() { return z; }
};

int main()
{
int* y;
foo(y); // Fine

boo myBoo;
foo(myBoo.getZ()); // Won't compile

return 0;
}

我可以通过让 boo::getZ() 返回对指针的引用来解决这个问题,但我试图了解传递给 foo() 的两个参数之间的区别。 boo::getZ() 返回的 int* 不是左值吗?如果是,为什么不呢?

最佳答案

如果 T 是一个对象类型并且 f 声明为...

T &  f();                                          f() is an lvalue
T && f(); then f() is an xvalue
T f(); f() is a prvalue

所以 getZ() 是一个纯右值 (T = int *),它是一个右值,而不是左值。

关于c++ - 函数的返回值未被识别为左值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24686823/

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