ACE
6.1.0
|
A dynamic array class. More...
#include <Containers_T.h>
Public Types | |
typedef T | TYPE |
typedef ACE_Array_Iterator< T > | ITERATOR |
Public Member Functions | |
ACE_Array (size_t size=0, ACE_Allocator *alloc=0) | |
Dynamically create an uninitialized array. | |
ACE_Array (size_t size, const T &default_value, ACE_Allocator *alloc=0) | |
Dynamically initialize the entire array to the {default_value}. | |
ACE_Array (const ACE_Array< T > &s) | |
Copy constructor. | |
void | operator= (const ACE_Array< T > &s) |
Assignment operator. | |
bool | operator== (const ACE_Array< T > &s) const |
Equality comparison operator. | |
bool | operator!= (const ACE_Array< T > &s) const |
Inequality comparison operator. |
A dynamic array class.
This class extends ACE_Array_Base, adding comparison operators.
Requirements and Performance Characteristics
typedef ACE_Array_Iterator<T> ACE_Array< T >::ITERATOR |
Reimplemented from ACE_Array_Base< T >.
Reimplemented from ACE_Array_Base< T >.
ACE_Array< T >::ACE_Array | ( | size_t | size = 0 , |
ACE_Allocator * | alloc = 0 |
||
) | [inline] |
Dynamically create an uninitialized array.
Initialize an empty array of the specified size using the provided allocation strategy.
ACE_Array< T >::ACE_Array | ( | size_t | size, |
const T & | default_value, | ||
ACE_Allocator * | alloc = 0 |
||
) | [inline] |
Dynamically initialize the entire array to the {default_value}.
Initialize an array the given size placing the default_value in each index.
Copy constructor.
The copy constructor performs initialization by making an exact copy of the contents of parameter {s}, i.e., *this == s will return true.
Inequality comparison operator.
Compare this array with {s} for inequality such that {*this} != {s} is always the complement of the boolean return value of {*this} == {s}.
Assignment operator.
Assignment operator performs an assignment by making an exact copy of the contents of parameter {s}, i.e., *this == s will return true. Note that if the {max_size_} of {array_} is >= than {s.max_size_} we can copy it without reallocating. However, if {max_size_} is < {s.max_size_} we must delete the {array_}, reallocate a new {array_}, and then copy the contents of {s}.
Equality comparison operator.
Compare this array with {s} for equality. Two arrays are equal if their {size}'s are equal and all the elements from 0 .. {size} are equal.