Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~122 People Reached
Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for tlwtheq

What is wrong with this and how do I fix it? Thanks. [CODE] template<typename T> class Array { public: Array(unsigned arraySize): data(0), size(arraySize) { if (size > 0) data = new T[size); } ~Array() { if (data) delete[] data; } void setValue(unsigned index, const T& value) { if (index < …

Member Avatar for VernonDozier
0
122