gpt4 book ai didi

C++ std vector 内容范围

转载 作者:搜寻专家 更新时间:2023-10-31 01:17:03 25 4
gpt4 key购买 nike

class example1
{
private:
int i;
public:
example1(){i = 1;}
int getI(){return i;}
};

class example2
{
public:
example2(){}
vector<example2> this_vector_wont_compile(3);
vector <example2> theVec;
void addVec()
{
//what's the scope of this?
//does push_back create a pointer
//to which a deep copy of the example1 instance
//returned by the constructor is performed?
theVec.push_back(example2());
}
};
int main()
{
example2 theExample;
theExample.theVec[0]; //can be accessed, instance of example1 in scope.
return 0;
}

您好,我想了解使用 std::vectors 的底层内存操作。上面的例子是我过去如何使用它们而没有质疑它是如何完成的。

当 addVec() 函数结束时,example2() 构造函数返回一个超出范围的实例,那么 theVec 如何添加它,同时在 theVec 存在的时间内将其保持在范围内?

另外,为什么在类中将 std::vector 声明为具有恒定大小会产生编译器错误,如何避免?

最佳答案

当您调用 theVec.push_back(example2()); 时, vector 会创建 example2 的临时实例的拷贝,并将其传递给 push_back。这将使用类的复制构造函数完成,编译器将自动生成,因为您没有明确创建一个。

我不完全确定你在问什么关于声明一个具有恒定大小的 std::vectorstd::vector 根据定义没有固定大小。但是,您可以通过像这样定义构造函数来使用初始大小构造它:

class example2 
{
example2() : theVec( 10 ) {};
std::vector< example2 > theVec;
....
}

关于C++ std vector 内容范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8489636/

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