标签: c++
我希望在C ++中有一个std :: sets数组。
std::set<GLuint> arrayOfSets[10]; if ( arrayOfSets[ 5 ].empty() ){ // do whatever }
上面的代码是否可以接受,或者我是否需要做一些事情来初始化数组中的集合?
对于std :: vector而不是数组,我会更好吗?