当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Vector shrink_to_fit()用法及代码示例



描述

C++ 函数std::vector::shrink_to_fit()请求容器减少其容量以适应其大小。

声明

以下是 std::vector::shrink_to_fit() 函数形式 std::vector 头文件的声明。

C++98

void shrink_to_fit();

参数

返回值

示例

下面的例子展示了 std::vector::shrink_to_fit() 函数的用法。

#include <iostream>
#include <vector>

using namespace std;

int main(void) {
   vector<int> v(128);

   cout << "Initial capacity = " << v.capacity() << endl;

   v.resize(25);
   cout << "Capacity after resize = " << v.capacity() << endl;

   v.shrink_to_fit();
   cout << "Capacity after shrink_to_fit = " << v.capacity() << endl;

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果——

Initial capacity = 128
Capacity after resize = 128
Capacity after shrink_to_fit = 25

相关用法


注:本文由纯净天空筛选整理自 C++ Vector Library - shrink_to_fit() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。