#include <Containers_T.h>
Collaboration diagram for ACE_Fixed_Stack:

Public Methods | |
| ACE_Fixed_Stack (void) | |
| Initialize a new stack so that it is empty. More... | |
| ACE_Fixed_Stack (const ACE_Fixed_Stack< T, ACE_SIZE > &s) | |
| The copy constructor (performs initialization). More... | |
| void | operator= (const ACE_Fixed_Stack< T, ACE_SIZE > &s) |
| Assignment operator (performs assignment). More... | |
| ~ACE_Fixed_Stack (void) | |
| Perform actions needed when stack goes out of scope. More... | |
| int | push (const T &new_item) |
| Constant time placement of element on top of stack. More... | |
| int | pop (T &item) |
| Constant time removal of top of stack. More... | |
| int | top (T &item) const |
| Constant time examination of top of stack. More... | |
| int | is_empty (void) const |
| Returns 1 if the container is empty, otherwise returns 0. More... | |
| int | is_full (void) const |
| Returns 1 if the container is full, otherwise returns 0. More... | |
| size_t | size (void) const |
| The number of items in the stack. More... | |
| void | dump (void) const |
| Dump the state of an object. More... | |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. More... | |
Private Attributes | |
| size_t | size_ |
| Size of the allocated data. More... | |
| size_t | top_ |
| Keeps track of the current top of stack. More... | |
| T | stack_ [ACE_SIZE] |
| Holds the stack's contents. More... | |
This implementation of a Stack uses a fixed array with the size fixed at instantiation time.
Requirements and Performance Characteristics
Definition at line 207 of file Containers_T.h.
|
||||||||||
|
Initialize a new stack so that it is empty. Initialize an empty stack. Definition at line 92 of file Containers_T.cpp. References ACE_TRACE.
|
|
||||||||||
|
The copy constructor (performs initialization). Initialize the stack and copy the provided stack into the current stack. Definition at line 100 of file Containers_T.cpp. References ACE_TRACE, stack_, and top_.
|
|
||||||||||
|
Perform actions needed when stack goes out of scope. Destroy the stack. Definition at line 124 of file Containers_T.cpp. References ACE_TRACE.
00125 {
00126 ACE_TRACE ("ACE_Fixed_Stack<T, ACE_SIZE>::~ACE_Fixed_Stack");
00127 }
|
|
||||||||||
|
Dump the state of an object.
Definition at line 86 of file Containers_T.cpp. References ACE_TRACE.
00087 {
00088 ACE_TRACE ("ACE_Fixed_Stack<T, ACE_SIZE>::dump");
00089 }
|
|
||||||||||
|
Returns 1 if the container is empty, otherwise returns 0. Performs constant time check to see if stack is empty. Definition at line 68 of file Containers_T.i. References ACE_TRACE, and top_.
|
|
||||||||||
|
Returns 1 if the container is full, otherwise returns 0. Performs constant time check to see if stack is full. Definition at line 75 of file Containers_T.i. References ACE_TRACE, size_, and top_. Referenced by push.
|
|
||||||||||
|
Assignment operator (performs assignment). Perform a deep copy of the provided stack. Definition at line 110 of file Containers_T.cpp. References ACE_TRACE, stack_, and top_.
|
|
||||||||||
|
Constant time removal of top of stack. Remove and return the top stack item. Returns -1 if the stack is already empty, 0 if the stack is not already empty, and -1 if failure occurs. Definition at line 95 of file Containers_T.i. References ACE_TRACE, is_empty, stack_, and top_.
|
|
||||||||||
|
Constant time placement of element on top of stack. Place a new item on top of the stack. Returns -1 if the stack is already full, 0 if the stack is not already full, and -1 if failure occurs. Definition at line 82 of file Containers_T.i. References ACE_TRACE, is_full, stack_, and top_.
|
|
||||||||||
|
The number of items in the stack. Constant time access to the current size of the stack. Definition at line 121 of file Containers_T.i. References size_.
00122 {
00123 return this->size_;
00124 }
|
|
||||||||||
|
Constant time examination of top of stack. Return top stack item without removing it. Returns -1 if the stack is already empty, 0 if the stack is not already empty, and -1 if failure occurs. Definition at line 108 of file Containers_T.i. References ACE_TRACE, is_empty, stack_, and top_.
|
|
|||||
|
Declare the dynamic allocation hooks.
Definition at line 285 of file Containers_T.h. |
|
|||||
|
Size of the allocated data.
Definition at line 289 of file Containers_T.h. |
|
|||||
|
Holds the stack's contents.
Definition at line 295 of file Containers_T.h. Referenced by ACE_Fixed_Stack, operator=, pop, push, and top. |
|
|||||
|
Keeps track of the current top of stack.
Definition at line 292 of file Containers_T.h. Referenced by ACE_Fixed_Stack, is_empty, is_full, operator=, pop, push, and top. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002