C++中vector类的函数clear的内部工作机制是什么?

 我来答
天蝎神经侠侣
高粉答主

2015-07-02 · 关注我不会让你失望
知道大有可为答主
回答量:7533
采纳率:67%
帮助的人:719万
展开全部
1.clear() 不调用析构函数
2.delete *it 调用析构函数
可用以下程序测试出来:

#include <iostream>
#include <string>
#include <fstream>
#include <vector>
using namespace std;

ofstream txtout( "test.txt ");

class A
{
public:
A()
{ txtout << "A constructor! " <<endl;
}
virtual ~A();
};

A::~A()
{ txtout << "A destructor! " <<endl;
}

const int test_size = 10;
int main()
{
{ vector < A* > the_vector,the_vector_copy;
A* pa;

for ( int i=0; i <test_size; i++ )
{ pa = new A();
the_vector.push_back(pa);
the_vector_copy.push_back(pa);
}

txtout <<endl;
txtout << "before delete... " <<endl;
pa = the_vector[0];
delete pa;
txtout << "after delete... " <<endl;
txtout <<endl;

txtout <<endl;
txtout << "before clear... " <<endl;
the_vector.clear();
txtout << "after clear... " <<endl;
txtout <<endl;

txtout <<endl;
txtout << "before all deleting... " <<endl;
for ( int i=1; i <test_size; i++ )
delete the_vector_copy[i];
}
txtout << "after all deleting... " <<endl;
txtout <<endl;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
赫连春萱
2011-11-02 · TA获得超过634个赞
知道答主
回答量:213
采纳率:100%
帮助的人:73.2万
展开全部
Vector他是一种STL的容器

STL提供6大组件,彼此可以组合套用:
1. 容器(containers):各种资料结构,如Vector、List、Map等,用来存储各种数据。
2. 演算法(algorithms):各种常用的算法,如sort、search、copy等,它的作用是为提供各种常用的操作。
3. 迭代器(iterators):一个非常重要的组件,用来将容器和演算法联系起来。也就是通常所说的泛型指针。
4. 仿函数(functors):行为类似函数,可作为演算法的某种策略(policy)。
5. 配接器(adapters):一种用来修饰容器或仿函数界面的东西。
6. 配置器(allocators):负责空间配置与管理,用来保证容器空间的正确分配。

详细看这个:

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ycsxm
2011-11-01 · TA获得超过3.3万个赞
知道大有可为答主
回答量:1.4万
采纳率:0%
帮助的人:7941万
展开全部
清掉vector中的所有元素。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
nemol307
2011-11-01 · 超过36用户采纳过TA的回答
知道小有建树答主
回答量:163
采纳率:0%
帮助的人:77.5万
展开全部
相当于调用erase( begin(), end())
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式