2014-02-21 5 views
8
#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; 
    } 
} 

Der obige Code gibt die folgenden Fehler, wenn mit GNU g ++ Compiler kompiliert.Fehler bei der Erstellung von std :: vector der lokalen Struktur

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’ 

Warum kann ich Vektor von Strukturen nicht erstellen?

+3

, die vor dem C++ nicht möglich ist 11. Übergeben Sie '-std = C++ 11' an Ihren Compiler und es wird funktionieren. –

Antwort

16

Vor C++ 11 konnten Sie Vorlagen mit lokalen Klassen nicht instanziieren. Sie haben zwei Möglichkeiten:

1) Setzen Sie die st Definition außerhalb von main

#include <vector> 

struct st { int a; }; 

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

2) Kompilieren mit einem C++ 11 Compiler

Verwandte Themen