std::tuple获取值
时间: 2023-07-28 13:53:11 浏览: 149
要获取 `std::tuple` 中的值,可以使用 `std::get` 函数。这个函数的第一个参数是 `std::tuple` 对象,第二个参数是要获取的元素的索引。例如,假设有一个 `std::tuple<int, double, std::string>` 对象,要获取第二个元素(即 `double` 类型),可以这样写:
```c++
#include <tuple>
#include <iostream>
int main() {
std::tuple<int, double, std::string> my_tuple(42, 3.14, "hello");
double my_double = std::get<1>(my_tuple);
std::cout << my_double << std::endl;
return 0;
}
```
输出:
```
3.14
```
相关问题
cpp11std::tuple 和 std::make_tuple
cpp11std::tuple 和 std::make_tuple 是 C++11 引入的两个新特性。
cpp11std::tuple 是一个用于存储多个值的容器,类似于 std::pair,但是可以存储多个值。cpp11std::tuple 在定义时需要指定每个元素的类型,并且可以通过 std::get 函数来获取每个元素的值。
std::make_tuple 是一个用于创建 cpp11std::tuple 对象的函数模板。它可以接受任意数量的参数,并将这些参数打包为一个 cpp11std::tuple 对象返回。
例如:
```
#include <tuple>
#include <string>
#include <iostream>
int main()
{
cpp11std::tuple<int, std::string, double> t(42, "hello", 3.14);
std::cout << std::get<0>(t) << " " << std::get<1>(t) << " " << std::get<2>(t) << std::endl;
auto t2 = std::make_tuple(42, "world", 2.71);
std::cout << std::get<0>(t2) << " " << std::get<1>(t2) << " " << std::get<2>(t2) << std::endl;
}
```
输出:
```
42 hello 3.14
42 world 2.71
```
其中,第一个例子是直接定义 cpp11std::tuple 对象,第二个例子使用了 std::make_tuple 函数来创建 cpp11std::tuple 对象。
std::vector<std::tuple<int32_t, std::string, std::string, std::string>> pageInfo;获取第二个元素
要获取std::vector<std::tuple<int32_t, std::string, std::string, std::string>> pageInfo中的第二个元素,可以使用std::get函数和索引值1来获取。具体代码如下:
```cpp
#include <iostream>
#include <vector>
#include <tuple>
int main() {
std::vector<std::tuple<int32_t, std::string, std::string, std::string>> pageInfo; pageInfo.push_back(std::make_tuple(1, "apple", "red", "fruit"));
pageInfo.push_back(std::make_tuple(2, "banana", "yellow", "fruit"));
pageInfo.push_back(std::make_tuple(3, "orange", "orange", "fruit"));
std::string secondElement = std::get<1>(pageInfo[0]);
std::cout << "Second element: " << secondElement << std::endl;
return 0;
}
```
输出结果为:
```
Second element: apple
```
阅读全文