本文介绍了如何使用c ++中的构造函数初始化2d向量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道如何初始化1d向量这样
I know how to initialize 1d vector like this
int myints[] = {16,2,77,29};
std::vector<int> fifth(myints, myints + sizeof(myints) / sizeof(int));
假设我有2d数据。
float yy[][2] = {{20.0, 20.0}, {80.0, 80.0}, {20.0, 80.0}, {80.0, 20.0}};
如何初始化2d向量?
推荐答案
在C ++ 11中,您可以初始化一个向量的向量,如下:
In C++ 11 you can initialize a vector of vectors like this:
auto yy = std::vector<std::vector<float>>
{
{20.0, 20.0},
{80.0, 80.0},
{20.0, 80.0},
{80.0, 20.0}
};
这篇关于如何使用c ++中的构造函数初始化2d向量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!