Method | Description | |
---|---|---|
CharVector ( ) : System | ||
CharVector ( char a ) : System | ||
CharVector ( char a, int capacity ) : System | ||
CharVector ( int capacity ) : System | ||
alloc ( int size ) : int | ||
capacity ( ) : int |
returns current capacity of array
|
|
clear ( ) : void |
Reset Vector but don't resize or clear elements
|
|
clone ( ) : |
||
get ( int index ) : char | ||
length ( ) : int |
return number of items in array
|
|
put ( int index, char val ) : void | ||
trimToSize ( ) : void |
public CharVector ( char a, int capacity ) : System | ||
a | char | |
capacity | int | |
return | System |