#include <Vector_T.h>
Inheritance diagram for ACE_Vector< T, DEFAULT_SIZE >:
Public Types | |
typedef ACE_Vector_Iterator< T, DEFAULT_SIZE > | Iterator |
Public Methods | |
ACE_Vector (const size_t init_size=DEFAULT_SIZE, ACE_Allocator *alloc=0) | |
~ACE_Vector () | |
size_t | capacity (void) const |
size_t | size (void) const |
void | clear (void) |
void | resize (const size_t new_size, const T &t) |
void | push_back (const T &elem) |
void | pop_back (void) |
void | dump (void) const |
int | operator== (const ACE_Vector< T, DEFAULT_SIZE > &s) const |
Equality comparison operator. | |
int | operator!= (const ACE_Vector< T, DEFAULT_SIZE > &s) const |
Inequality comparison operator. | |
Protected Attributes | |
size_t | length_ |
size_t | curr_max_size_ |
Friends | |
class | ACE_Vector_Iterator< T, DEFAULT_SIZE > |
This is an STL-like template vector container, a wrapper around ACE_Array. It provides at least the basic std::vector look and feel: push_back(), clear(), resize(), capacity(). This template class uses the copy semantic paradigm, though it is okay to use reference counted smart pointers (see ACE_Ptr<T>) with this template class.
Requirements and Performance Characteristics
|
A short name for iterator for ACE_Vector. |
|
General constructor. |
|
Destructor. |
|
Returns the current vector capacity, that is, the currently allocated buffer size.
|
|
Clears out the vector. It does not reallocate the vector's buffer, it is just sets the vector's dynamic size to 0. |
|
This function dumps the content of the vector. TO BE MOVED out of this class. It needs to be implemented as a global template function that accepts a const ACE_Vector<T>, in order to make instances of this class compile on Linux, AIX. G++ and xlC have template instantiation algoriths, which are different from the one in Visual C++. The algorithms try to instantiate ALL methods declared in the template class, regardless of whether the functions are used or not. That is, all of the classes, that are used as elements in ACE_Vector's, have to have the dump() methods defined in them (seems to be overkill). This function calls T::dump() for each element of the vector. |
|
Inequality comparison operator. Compare this vector with
|
|
Equality comparison operator. Compare this vector with
|
|
Deletes the last element from the vector ("pop back"). What this function really does is decrement the dynamic size of the vector. The vector's buffer does not get reallocated for performance. |
|
Appends a new element to the vector ("push back"). If the dynamic size of the vector is equal to the capacity of the vector (vector is at capacity), the vector automatically doubles its capacity.
|
|
Resizes the vector to the new capacity. If the vector's current capacity is smaller than the size to be specified, then the buffer gets reallocated. If the new capacity is less than the current capacity of the vector, the buffer size stays the same.
|
|
Returns the vector's dynamic size / actual current size of the vector. Do not confuse it with ACE_Array::size(), which returns the array's capacity. Unfortunately, ACE is not very consistent with the function names.
Reimplemented from ACE_Array_Base< T >. |
|
|
|
Current capacity (buffer size) of the vector. |
|
Dynamic size (length) of the vector. |