Errors creating std::vector of local structure

c++, stdvector, structure

Solution

Before C++11, you couldn't instantiate templates with local classes. You have two options:

1) Put the `st` definition outside of `main`

#include <vector>

struct st { int a; };

int main() 
{
  std::vector<st> v;
}

2) Compile with a c++11 compiler

Problem

``` #include <vector> int main() { struct st { int a; }; std::vector<st> v; for (std::vector<st>::size_type i = 0; i < v.size(); i++) { v.operator[](i).a = i + 1; // v[i].a = i+1; } } ``` The above code gives the following errors when compiled with GNU g++ compiler. ``` test.cpp: In function ‘int main()’: test.cpp:6:19: error: template argument for ‘template<class _Alloc> class std::allocator’ uses local type ‘main()::st’ test.cpp:6:19: error: trying to instantiate ‘template<class _Alloc> class std::allocator’ test.cpp:6:19: error: template argument 2 is invalid test.cpp:6:22: error: invalid type in declaration before ‘;’ token test.cpp:7:24: error: template argument for ‘template<class _Alloc> class std::allocator’ uses local type ‘main()::st’ test.cpp:7:24: error: trying to instantiate ‘template<class _Alloc> class std::allocator’ test.cpp:7:24: error: template argument 2 is invalid test.cpp:7:37: error: expected initializer before ‘i’ test.cpp:7:44: error: ‘i’ was not declared in this scope test.cpp:7:50: error: request for member ‘size’ in ‘v’, which is of non-class type ‘int’ test.cpp:8:20: error: request for member ‘operator[]’ in ‘v’, which is of non-class type ‘int’ ``` Why I am not able to create vector of structures?

Original source