118
C++ String shrink_to_fit()
This function reduces the capacity of the string and makes it equal to its size.
Syntax
Consider a string str. Synatx would be:
Parameter
It does not contain any parameter.
Return value
It does not return any value.
Example 1
Let’s see the simple example.
Output:
15 15
In this example, shrink_to_fit() function is applied to the string so that capacity of string becomes equal to the size of string.
Example 2
Let’s see another simple example.
Output:
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
Next TopicC++ Strings