1

我想知道是否可以在单个“行”内的向量数组中初始化一堆类。

class A {
     public:
         A(int k) {...}
};

[...]

#include <array>
#include <vector>
using namespace std;

array<vector<A>, 3> = { { A(5), A(6) }, { A(1), A(2), A(3) }, { } };

正如您可以想象的那样,此解决方案不起作用(否则我不会在这里!)。最快的方法是什么?

4

2 回答 2

2

这样做,无需重复提及A

array<std::vector<A>, 3> v{{ {1}, {2,3,4}, {} }};

如果构造函数采用两个参数,您可以将它们写在大括号内:

array<std::vector<A2>, 3> v2{{ {{1,2}}, {{2,3},{4,5},{8,9}}, {} }};

我可能更喜欢下面的语法,如果构造函数是显式的,它也可以工作。

std::array<std::vector<A2>, 3> v2{{ {A2{1,2}}, {A2{2,3},A2{4,5},A2{8,9}}, {} }};  

完整示例:

#include <array>
#include <vector>
#include <iostream>

struct A2 {
  A2(int k,int j) : mk(k),mj(j) {}
  int mk;
  int mj;
};

int main (){
  std::array<std::vector<A2>, 3> v2{{ {{1,2}}, {{2,3},{4,5},{8,9}}, {} }};  
  int i=0;
  for (auto &a : v2){
    std::cout << "... " << i++ <<std::endl;
    for (auto &b : a){
      std::cout << b.mk << " " <<b.mj <<std::endl;
    }
  }
}
于 2012-10-30T21:45:14.807 回答
0

我认为应该允许这样做:

#include <array>
#include <vector>
using namespace std;

class A {
     public:
         A(int k) {}
};

array<vector<A>, 3> v = { vector<A>{5, 6}, vector<A>{1, 2, 3}, vector<A>{} };

在快速测试中,g++ 4.7.1 似乎同意。

于 2012-10-30T21:43:12.570 回答