메소드 | 설명 | |
---|---|---|
ByteVector ( ) : System | ||
ByteVector ( int capacity ) : System | ||
ByteVector ( sbyte a ) : System | ||
ByteVector ( sbyte a, int capacity ) : System | ||
alloc ( int size ) : int |
This is to implement memory allocation in the array. Like malloc().
|
|
capacity ( ) : int |
returns current capacity of array
|
|
get ( int index ) : sbyte | ||
length ( ) : int |
return number of items in array
|
|
put ( int index, sbyte val ) : void | ||
trimToSize ( ) : void |
public ByteVector ( sbyte a, int capacity ) : System | ||
a | sbyte | |
capacity | int | |
리턴 | System |