在C ++中创建结构列表

时间:2015-05-20 16:37:19

标签: c++ eclipse list struct

我想在C ++中创建一个 struct 列表,但是会发生错误:

  

声明中的无效类型»;«token

一个最小的例子:

#include <list>
#include <string>
#include <iostream>

using namespace std;

int main( int argc, char** argv )
{
  struct test {
      string a1;
      string a2;
      int b1;
      int b2;
  };
  list<TBildpaar> Files;
}

1 个答案:

答案 0 :(得分:1)

#include <list>
#include <string>
#include <iostream>

using namespace std;

typedef struct {
    string a1;
    string a2;
    int b1;
    int b2;
}test;

int main( int argc, char** argv )
{

    list<test> Files;
}

你去。