|
|
 |
|
|
|
|
public:
float ValueAt( /* in */ int i ) const;
void Store( /* in */ float val,
/* in */ int i );
void CopyFrom( /* in */ DynArray array2 );
DynArray( /* in */ int arrSize );
DynArray( const DynArray& array2 );
~DynArray();
private:
float* arr;
int size;
}; |
|
|
|
 |
|
|
|
|
Indicate precisely how the implementation of each of the six member functions would differ from the code presented in the case study. |
|
|
|
|
|