Inherits Object.
Public Member Functions | |
StringArray () | |
Constructor. | |
StringArray (const StringArray &other) | |
Constructor, with another array object. More... | |
~ StringArray () | |
Destructor. | |
void | Add (String element) |
Add an element to the end of current array. More... | |
String | GetAt (size_t index) const |
Retrieve a copy of the element at position specified by index in current array. More... | |
size_t | GetSize () const |
Get the size of elements in current array. More... | |
void | InsertAt (size_t index, String element) |
Insert an element before the position specified by index. More... | |
StringArray & | operator= (const StringArray &other) |
Assign operator. More... | |
String & | operator[] (size_t index) const |
Retrieve a reference to the element at position specified by index in current array. More... | |
void | RemoveAll () |
Remove all the element from current array. More... | |
void | RemoveAt (size_t index) |
Remove the element in position specified by index. More... | |
This class represents an array of String objects.
foxit::StringArray::StringArray | ( | const StringArray & | other | ) |
Constructor, with another array object.
[in] | other | Another array object. |
void foxit::StringArray::Add | ( | String | element | ) |
Add an element to the end of current array.
[in] | element | New element to be added to current array. |
String foxit::StringArray::GetAt | ( | size_t | index | ) | const |
Retrieve a copy of the element at position specified by index in current array.
[in] | index | An index to specify which element is to be retrieved. |
size_t foxit::StringArray::GetSize | ( | ) | const |
Get the size of elements in current array.
void foxit::StringArray::InsertAt | ( | size_t | index, |
String | element | ||
) |
Insert an element before the position specified by index.
[in] | index | An index to specify where to insert the new element. Valid range: from 0 to (size-1). size is the size of elements in current array. |
[in] | element | New element to be inserted to current array. |
StringArray& foxit::StringArray::operator= | ( | const StringArray & | other | ) |
Assign operator.
[in] | other | Another array object, whose value will be assigned to current object. |
String& foxit::StringArray::operator[] | ( | size_t | index | ) | const |
Retrieve a reference to the element at position specified by index in current array.
[in] | index | An index to specify which element is to be retrieved. |
void foxit::StringArray::RemoveAll | ( | ) |
Remove all the element from current array.
void foxit::StringArray::RemoveAt | ( | size_t | index | ) |
Remove the element in position specified by index.
[in] | index | An index to specify which element is to be removed. Valid range: from 0 to (size-1). size is the size of elements in current array. |