此函數減少字符串的容量並使其等於其大小。
用法
考慮一個字符串 str。 Synatx 將是:
str.shrink_to_fit();
參數
它不包含任何參數。
返回值
它不返回任何值。
例子1
讓我們看一個簡單的例子。
#include<iostream>
using namespace std;
int main()
{
string str="C++ Programming";
cout<<str.capacity()<<'\n';
str.shrink_to_fit();
cout<<str.capacity();
return 0;
}
輸出:
15 15
在本例中,shrink_to_fit() 函數應用於字符串,以便字符串的容量變得等於字符串的大小。
例子2
讓我們看另一個簡單的例子。
#include<iostream>
using namespace std;
int main()
{
string str="Computer is my favorite subject";
cout<<"Initial string value is:"<<str<<'\n';
str.resize(24);
cout<<"After resizing,string value is:"<<str<<'\n';
str.shrink_to_fit();
cout<<"capacity of the string is:"<<str.capacity()<<'\n';
cout<<"size of the string is :"<<str.size();
return 0;
}
輸出:
Initial string value is:Computer is my favorite subject After resizing, string value is:Computer is my favorite capacity of the string is:24 size of the string is :24
相關用法
- C++ String swap()用法及代碼示例
- C++ String size()用法及代碼示例
- C++ String back()用法及代碼示例
- C++ String append()用法及代碼示例
- C++ String Assign()用法及代碼示例
- C++ String begin()用法及代碼示例
- C++ String resize()用法及代碼示例
- C++ String Find()用法及代碼示例
- C++ String crend()用法及代碼示例
- C++ String compare()用法及代碼示例
- C++ String empty()用法及代碼示例
- C++ String replace()用法及代碼示例
- C++ String at()用法及代碼示例
- C++ String insert()用法及代碼示例
- C++ String clear()用法及代碼示例
- C++ String Data()用法及代碼示例
- C++ String cend()用法及代碼示例
- C++ String pop_back()用法及代碼示例
- C++ String find_first_not_of()用法及代碼示例
- C++ String find_last_of()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ String shrink_to_fit()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。