JVector
Design of the Library :
This class is a based on the Java Vector class and as such contains all the public member
functions of it's Java equivalent. Unlike Java, typecasts are not necessary since C++ allows
template instantiation of types at compile time. In addition to the Java public member
functions, the following were also added in order to take advantage of the operator overloading
feature available in C++.
const Etype & operator[]( UINT index ) const; // for indexing item
Etype & operator[]( UINT index ); // for setting value at index
Public functionality:
The library is fairly simple in usage. You may visit the class specification at JavaSoft.
|