我有 n 个向量,这些向量是根据用户输入生成的。我想将它们存储在数组或向量中。
我来自 php,在 php 中你可以将数组存储在另一个数组中。我怎样才能在 C++ 中实现这一点。通过将 n 个向量存储在数组或向量中。
// 这就是在 php 中如何实现的,假设 php 有向量
for (int i = 0 ; i< userInput ; i++)
{
arrayOfVectors[] = vector<string> students_1;
}