gpt4 book ai didi

C++11:boost::make_tuple 与 std::make_tuple 有何不同?

转载 作者:行者123 更新时间:2023-11-27 22:42:59 33 4
gpt4 key购买 nike

http://en.cppreference.com/w/cpp/utility/tuple/make_tuple(为了方便粘贴代码)

#include <iostream>
#include <tuple>
#include <functional>

std::tuple<int, int> f() // this function returns multiple values
{
int x = 5;
return std::make_tuple(x, 7); // return {x,7}; in C++17
}

int main()
{
// heterogeneous tuple construction
int n = 1;
auto t = std::make_tuple(10, "Test", 3.14, std::ref(n), n);
n = 7;
std::cout << "The value of t is " << "("
<< std::get<0>(t) << ", " << std::get<1>(t) << ", "
<< std::get<2>(t) << ", " << std::get<3>(t) << ", "
<< std::get<4>(t) << ")\n";

// function returning multiple values
int a, b;
std::tie(a, b) = f();
std::cout << a << " " << b << "\n";
}

https://theboostcpplibraries.com/boost.tuple

#include <boost/tuple/tuple.hpp>
#include <boost/tuple/tuple_io.hpp>
#include <string>
#include <iostream>

int main()
{
typedef boost::tuple<std::string, int, bool> animal;
animal a = boost::make_tuple("cat", 4, true);
a.get<0>() = "dog";
std::cout << std::boolalpha << a << '\n';
}

根据文档,boost::make_tuple 和 std::make_tuple 似乎完全可以互换。

它们真的完全可以互换吗?在什么情况下他们不是?

在 boost 文档中它说 boost::tuple 和 std::tuple 在 c++11 中是相同的

在 std 文档中它说 make_tuple 返回一个 std::tuple。

那么我遗漏了什么细微差别吗?

最佳答案

没有功能上的区别。

boost::tuple大约在二十年前创建,std::tuple于 2011 年被引入 C++11 的核心标准库,距今仅 6 年。

对于术语“可互换”的给定定义,它们不是“可互换的”。您不能分配 std::tuple<>boost::tuple<>反之亦然,因为即使它们的实现相同,它们仍然代表不同的对象。

但是,因为它们本质上是相同的,所以您可以查找→替换 boost::tuplestd::tuple并且或多或少以相同的行为和执行代码到达,并且由于对 boost 库的依赖不是每个程序员都可以拥有的,几乎普遍建议任何可以访问 >=C++11 的项目都喜欢 std::tuple在所有情况下。

编辑:

正如@Nir 所指出的,boost::tuple 之间存在一些语法差异。和 std::tuple ,特别是涉及 get<>() syntax,也是boost::tuple的成员函数并且只有 std::tuple 的免费功能.

关于C++11:boost::make_tuple 与 std::make_tuple 有何不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46573377/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com