deque - STL C++

deque<X, A>::shrink_to_fit()

Declaration

void deque<X,A>::shrink_to_fit();

Description

This is the shrink_to_fit() function for the deque class template.

Header Include

#include <deque>

Example

#include <iostream>
#include <deque>

int main()
{
	using namespace std;

	// Create a deque instance
	deque<char> qD;
	qD.push_back('X');
	qD.push_back('o');
	qD.push_back('a');
	qD.push_back('X');
	qD.push_back('.');
	qD.push_back('n');
	qD.push_back('e');
	qD.push_back('t');

	// Output the capacity before and after shrinking
	cout << "Size = " << qD.size() << endl;
	qD.shrink_to_fit();
	cout << "Size = " << qD.size() << endl;

	// Keep the window open
	cin.get();
	return 0;
}

Output

deque<X, A>::shrink_to_fit() Output
 

© 2007–2024 XoaX.net LLC. All rights reserved.