Difference between revisions of "cpp/container/queue"
From cppreference.com
m (Text replace - "/sidebar" to "/navbar") |
m (r2.7.3) (Robot: Adding de, es, fr, zh) |
||
Line 55: | Line 55: | ||
{{dcl list end}} | {{dcl list end}} | ||
+ | [[de:cpp/container/queue]] | ||
+ | [[es:cpp/container/queue]] | ||
+ | [[fr:cpp/container/queue]] | ||
[[it:cpp/container/queue]] | [[it:cpp/container/queue]] | ||
[[ja:cpp/container/queue]] | [[ja:cpp/container/queue]] | ||
Line 61: | Line 64: | ||
[[ru:cpp/container/queue]] | [[ru:cpp/container/queue]] | ||
[[tr:cpp/container/queue]] | [[tr:cpp/container/queue]] | ||
+ | [[zh:cpp/container/queue]] |
Revision as of 11:34, 2 November 2012
Defined in header <queue>
|
||
template< class T, |
||
The std::queue
class is a container adapter that gives the programmer the functionality of a queue - specifically, a FIFO (first-in, first-out) data structure.
Contents |