gpt4 book ai didi

c++ - 修改引用返回的 vector

转载 作者:太空狗 更新时间:2023-10-29 19:57:22 31 4
gpt4 key购买 nike

为什么下面 vector 的大小是0?

#include <iostream>
#include<vector>
using namespace std;
class A
{

public:
vector<int> T;
const vector<int>& get(){
return T;
}
void print(){
cout<< " size is "<<T.size();
// cout<<" \nelements are %d "<<T[0];
}
};
int main()
{
cout << "Hello World" << endl;
A ob;
vector<int> temp = ob.get();
temp.clear();
temp.push_back(3);
temp.push_back(5);

ob.print();
return 0;
}

最佳答案

那是因为它什么都没发生。它仍然是空的。

您在 temp 中创建了 vector 的拷贝,并且修改了拷贝,而不是原始类成员。你应该使用引用:

 vector<int> &temp = ob.get();

因为您要从 get() 返回一个引用,所以您必须将它分配给一个引用。如果不这样做,您只是在复制该对象。

编辑:另外,更改 get() 以返回可变引用,而不是 const 引用。

关于c++ - 修改引用返回的 vector ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36783106/

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