I want to define an integer array in a class
but its size are not determined in the definition
but retrieved from a configure file when the program starts to run
so how to define this array?
My idea is to use STL vector
and call vector.resize() in the constructor
are there any suggestions? thanks