std::string::length, std::string::capacity, std::string::size in C++ STL
Last Updated :
24 Mar, 2023
Prerequisite: String in C++
String class is one of the features provided by the Standard template library to us, So it comes up with great functionality associated with it. With these Functionalities, we can perform many tasks easily. Let's see a few of the functionalities string class provides.
Header File <string>
String Functionalities
There are many functionalities associated with string class but we will be focusing on only three of them, these are:
- std :: string :: length
- std :: string :: size
- std :: string :: capacity
- std :: string :: reserve()
- std :: string :: shrink_to_fit()
All three functions are public member functions of the Class String. To know more about other functionalities in string class refer to a String in STL.
1. std::string::length
Returns the length of a string. This returns the exact no. of characters or bytes used and not the memory that is allocated at the backend. length member function never throws exceptions.
Syntax:
size_t std::string::length( )
Note:
- size_t is a typedef version of unsigned int, as sizes cannot be negative.
- No parameters are passed, the string is identified with this pointer.
2. std::string::size
Returns the length of the string, in terms of bytes. This returns the exact no. of characters or bytes used and not the memory that is allocated at the backend. Both length and size are the same and return the same value but size can be used in any container like vector, list, etc whereas length is more associated with the string. size member function never throws exceptions.
Syntax:
size_t std::string::size( )
3. std::string::capacity
- Returns the size of the storage space currently allocated in the Memory for that string object.
- This does NOT return the exact no. of characters or bytes used but, the memory that is allocated at the backend.
- Capacity is always GREATER THAN EQUAL TO size/length.
- The extra space allows the string object to optimize its operations when new characters are added.
- Capacity is NOT limited, as needed the capacity is increased by the compiler.
- Capacity does not Reduce automatically, it needs to be done explicitly.
Syntax:
size_t std::string::capacity( );
Code:
C++
// C++ Program to demonstrate use of
// std::string::capacity
// std::string::size
// std::string::length
#include <iostream>
#include <string>
using namespace std;
int main()
{
// empty str
string str;
cout << "str is : " << str << "\n";
cout << "size: " << str.size()
<< " length: " << str.length()
<< " capacity: " << str.capacity() << "\n";
// H - only one character
str = "H";
cout << "str is : " << str << "\n";
cout << "size: " << str.size()
<< " length: " << str.length()
<< " capacity: " << str.capacity() << "\n";
// Hello
str = "Hello";
cout << "str is : " << str << "\n";
cout << "size: " << str.size()
<< " length: " << str.length()
<< " capacity: " << str.capacity() << "\n";
// Hello with space added
str = "Hello ";
cout << "str is : " << str << "\n";
cout << "size: " << str.size()
<< " length: " << str.length()
<< " capacity: " << str.capacity() << "\n";
// one more modification
str = "Hello GFG Reader";
cout << "str is : " << str << "\n";
cout << "size: " << str.size()
<< " length: " << str.length()
<< " capacity: " << str.capacity() << "\n";
// Back to Hello
str = "Hello";
cout << "str is : " << str << "\n";
cout << "size: " << str.size()
<< " length: " << str.length()
<< " capacity: " << str.capacity() << "\n";
// reserve is basically request to compiler to change
// the capacity decrease capacity
str.reserve(7);
cout << "str is : " << str << "\n";
cout << "size: " << str.size()
<< " length: " << str.length()
<< " capacity: " << str.capacity() << "\n";
// increase capacity
str.reserve(35);
cout << "str is : " << str << "\n";
cout << "size: " << str.size()
<< " length: " << str.length()
<< " capacity: " << str.capacity() << "\n";
return 0;
}
Outputstr is :
size: 0 length: 0 capacity: 0
str is : H
size: 1 length: 1 capacity: 1
str is : Hello
size: 5 length: 5 capacity: 5
str is : Hello
size: 6 length: 6 capacity: 10
str is : Hello GFG Reader
size: 16 length: 16 capacity: 20
str is : Hello
size: 5 length: 5 capacity: 20
str is : Hello
size: 5 length: 5 capacity: 7
str is : Hello
size: 5 length: 5 capacity: 35
The above code demonstrates all the possible scenarios. The facts have also proven that Capacity >= size/length, then the capacity increases automatically as the size of the string crosses the previous capacity, then the capacity is never reduced back when the size goes down, but that can be done explicitly by the programmer using reserve function.
Time and Space Complexity
Functions | Time | Extra Space |
---|
str.size() | O(1) | O(1) |
str.length() | O(1) | O(1) |
str.capacity() | O(1) | O(1) |
4. std::string::reserve
- Reserves a specified amount of storage space in memory for the string object without changing its length or content.
- This function can be used to avoid multiple memory reallocations when appending characters to a string.
- The function reserves the memory to accommodate at least the specified number of characters or bytes, but the actual capacity may be greater than that.
- If the requested capacity is less than or equal to the current capacity, the function has no effect.
Syntax:
void std::string::reserve(size_t new_cap);
Example:
C++
#include <iostream>
#include <string>
int main()
{
std::string str;
std::cout << "Before reserve(), capacity = "
<< str.capacity() << std::endl;
str.reserve(100); // Reserve memory for 100 characters
std::cout << "After reserve(), capacity = "
<< str.capacity() << std::endl;
return 0;
}
OutputBefore reserve(), capacity = 0
After reserve(), capacity = 100
5. std::string::shrink_to_fit
- std::string::shrink_to_fit() reduces the capacity of the string object to fit its actual length, potentially saving memory.
- The function has no effect if the current capacity is already equal to or less than the actual length of the string.
- The function can be used to release unused memory of a string object that was previously expanded with std::string::reserve().
- Calling std::string::shrink_to_fit() can reduce the capacity to fit the actual string, potentially saving memory.
Syntax:
void std::string::shrink_to_fit();
Example:
C++
#include <iostream>
#include <string>
int main()
{
std::string str = "Hello, World!";
std::cout << "Before shrink_to_fit(), capacity = "
<< str.capacity() << std::endl;
str.reserve(100); // Reserve memory for 100 characters
std::cout << "After reserve(), capacity = "
<< str.capacity() << std::endl;
str.shrink_to_fit(); // Shrink the capacity to fit the
// actual length
std::cout << "After shrink_to_fit(), capacity = "
<< str.capacity() << std::endl;
return 0;
}
OutputBefore shrink_to_fit(), capacity = 13
After reserve(), capacity = 100
After shrink_to_fit(), capacity = 13
Similar Reads
C++ Programming Language C++ is a computer programming language developed by Bjarne Stroustrup as an extension of the C language. It is known for is fast speed, low level memory management and is often taught as first programming language. It provides:Hands-on application of different programming concepts.Similar syntax to
5 min read
Object Oriented Programming in C++ Object Oriented Programming - As the name suggests uses objects in programming. Object-oriented programming aims to implement real-world entities like inheritance, hiding, polymorphism, etc. in programming. The main aim of OOP is to bind together the data and the functions that operate on them so th
5 min read
30 OOPs Interview Questions and Answers [2025 Updated] Object-oriented programming, or OOPs, is a programming paradigm that implements the concept of objects in the program. It aims to provide an easier solution to real-world problems by implementing real-world entities such as inheritance, abstraction, polymorphism, etc. in programming. OOPs concept is
15 min read
Inheritance in C++ The capability of a class to derive properties and characteristics from another class is called Inheritance. Inheritance is one of the most important features of Object-Oriented Programming in C++. In this article, we will learn about inheritance in C++, its modes and types along with the informatio
10 min read
Vector in C++ STL C++ vector is a dynamic array that stores collection of elements same type in contiguous memory. It has the ability to resize itself automatically when an element is inserted or deleted.Create a VectorBefore creating a vector, we must know that a vector is defined as the std::vector class template i
7 min read
Templates in C++ C++ template is a powerful tool that allows you to write a generic code that can work with any data type. The idea is to simply pass the data type as a parameter so that we don't need to write the same code for different data types.For example, same sorting algorithm can work for different type, so
9 min read
C++ Interview Questions and Answers (2025) C++ - the must-known and all-time favourite programming language of coders. It is still relevant as it was in the mid-80s. As a general-purpose and object-oriented programming language is extensively employed mostly every time during coding. As a result, some job roles demand individuals be fluent i
15+ min read
Operator Overloading in C++ in C++, Operator overloading is a compile-time polymorphism. It is an idea of giving special meaning to an existing operator in C++ without changing its original meaning.In this article, we will further discuss about operator overloading in C++ with examples and see which operators we can or cannot
8 min read
C++ Standard Template Library (STL) The C++ Standard Template Library (STL) is a set of template classes and functions that provides the implementation of common data structures and algorithms such as lists, stacks, arrays, sorting, searching, etc. It also provides the iterators and functors which makes it easier to work with algorith
9 min read
Map in C++ STL In C++, maps are associative containers that store data in the form of key value pairs sorted on the basis of keys. No two mapped values can have the same keys. By default, it stores data in ascending order of the keys, but this can be changes as per requirement.Example:C++#include <bits/stdc++.h
8 min read