如何初始化std :: sets数组?

时间:2014-01-23 01:25:10

标签: c++

我希望在C ++中有一个std :: sets数组。

std::set<GLuint> arrayOfSets[10];
if ( arrayOfSets[ 5 ].empty() ){
  // do whatever
}

上面的代码是否可以接受,或者我是否需要做一些事情来初始化数组中的集合?

对于std :: vector而不是数组,我会更好吗?

0 个答案:

没有答案