Skip to content

Instantly share code, notes, and snippets.

@rchatsiri
Created October 13, 2010 15:45
Show Gist options
  • Save rchatsiri/624298 to your computer and use it in GitHub Desktop.
Save rchatsiri/624298 to your computer and use it in GitHub Desktop.
template<typename T,int MAXVALUE>
class ArrayList{
private:
T *valueA;
public:
ArrayList(){
valueA = new T[MAXVALUE];
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment