queue Class Template Reference
[ContainersSequences]

A standard container giving FIFO behavior. More...

List of all members.

Public Types

Public Member Functions

Protected Attributes

Friends


Detailed Description

template<typename _Tp, typename _Sequence>
class std::queue< _Tp, _Sequence >

Meets many of the requirements of a container, but does not define anything to do with iterators. Very few of the other standard container interfaces are defined.

This is not a true container, but an adaptor. It holds another container, and provides a wrapper interface to that container. The wrapper is what enforces strict first-in-first-out queue behavior.

The second template parameter defines the type of the underlying sequence/container. It defaults to std::deque, but it can be any type that supports front, back, push_back, and pop_front, such as std::list or an appropriate user-defined type.

Members not found in "normal" containers are container_type, which is a typedef for the second Sequence parameter, and push and pop, which are standard queue/FIFO operations.

Definition at line 106 of file stl_queue.h.


Constructor & Destructor Documentation

queue ( const _Sequence &  __c = _Sequence()  )  [inline, explicit]

Default constructor creates no elements.

Definition at line 146 of file stl_queue.h.


Member Function Documentation

const_reference back (  )  const [inline]

Returns a read-only (constant) reference to the data at the last element of the queue.

Definition at line 198 of file stl_queue.h.

References queue::c.

reference back (  )  [inline]

Returns a read/write reference to the data at the last element of the queue.

Definition at line 187 of file stl_queue.h.

References queue::c.

bool empty (  )  const [inline]

Returns true if the queue is empty.

Definition at line 152 of file stl_queue.h.

References queue::c.

const_reference front (  )  const [inline]

Returns a read-only (constant) reference to the data at the first element of the queue.

Definition at line 176 of file stl_queue.h.

References queue::c.

reference front (  )  [inline]

Returns a read/write reference to the data at the first element of the queue.

Definition at line 165 of file stl_queue.h.

References queue::c.

void pop (  )  [inline]

Removes first element.

This is a typical queue operation. It shrinks the queue by one. The time complexity of the operation depends on the underlying sequence.

Note that no data is returned, and if the first element's data is needed, it should be retrieved before pop() is called.

Definition at line 229 of file stl_queue.h.

References queue::c.

void push ( const value_type &  __x  )  [inline]

Add data to the end of the queue.

Parameters:
x Data to be added.
This is a typical queue operation. The function creates an element at the end of the queue and assigns the given data to it. The time complexity of the operation depends on the underlying sequence.

Definition at line 214 of file stl_queue.h.

References queue::c.

size_type size (  )  const [inline]

Returns the number of elements in the queue.

Definition at line 157 of file stl_queue.h.

References queue::c.


Member Data Documentation

_Sequence c [protected]

'c' is the underlying container. Maintainers wondering why this isn't uglified as per style guidelines should note that this name is specified in the standard, [23.2.3.1]. (Why? Presumably for the same reason that it's protected instead of private: to allow derivation. But none of the other containers allow for derivation. Odd.)

Definition at line 139 of file stl_queue.h.

Referenced by queue::back(), queue::empty(), queue::front(), std::operator==(), queue::pop(), queue::push(), and queue::size().


The documentation for this class was generated from the following file:

Generated on Tue Dec 2 03:59:54 2008 for libstdc++ by  doxygen 1.5.7.1