vector< pair<pair<int, string> >, string> v;
还要提到如何使用&#39; first&#39;第二个&#39;。 甚至可以做到这一点,还是&#34; union&#34;或&#34;结构&#34;创建可以容纳两种以上数据类型的向量的唯一方法是什么?
答案 0 :(得分:4)
std::vector< std::pair<std::pair<int, std::string>, std::string> > v;
是可能的,
v[0].first.first = 42;
v[1].first.second = "hello";
v[2].second = "world";
std::tuple
是一个不错的选择:
std::vector<std::tuple<int, std::string, std::string>> v = /*..*/;
std::get<0>(v[0]) = 42;
std::get<1>(v[0]) = "Hello";
std::get<2>(v[0]) = "World";
适当的结构允许提供语义
struct Person
{
int age;
std::string firstName;
std::string lastName;
};
std::vector<Person> persons = /*...*/;
persons[0].age = 42;
persons[0].firstName = "John";
persons[0].lastName = "Doe";