Hi folks,

I am a newcomer to C++ and am reading a example code right now. In this example code, the author used a lot of
Code:
vector<static DataType> somename;
. I know the static vector definition but wonder what's the different between
Code:
static vector<int> var1
and
Code:
vector<static int> var2
? Can anybody explain this for me? Thanks a lot.


Cuthbert