作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
标准中的std::make_
函数,例如:
std::make_unique
和std::make_shared
std::make_tuple
std::make_from_tuple
make_from_tuple
as presented by the standard选择返回
T(params...)
而不是
T{params...}
。
auto vec = std::make_from_tuple<std::vector<int>>(std::make_tuple());
auto arr = std::make_from_tuple<std::array<int, 2>>(std::make_tuple(9, 8));
std::array
创建
tuple
就是
illegal also with C++20,因为
p0960 - allowing initialization of aggregates from a parenthesized list of values成为
part of the C++20 spec不允许对
std::array
进行此类初始化,因为其内部类型是
T[size]
,无法从值列表中进行初始化(括号已被剥离)通过
std::array
初始化)。
auto vec2 = std::make_from_tuple<std::vector<int>>(std::make_tuple(2, 3));
// a vector with the values: {3, 3} surprise? :-)
curly_make_from_tuple
的代码:
template<typename T, typename tuple_t>
constexpr auto curly_make_from_tuple(tuple_t&& tuple) {
constexpr auto get_T = [](auto&& ... x){ return T{std::forward<decltype(x)>(x) ... }; };
return std::apply(get_T, std::forward<tuple_t>(tuple));
}
auto arr = curly_make_from_tuple<std::array<int, 2>>(std::make_tuple(9, 8)); // {9, 8}
auto vec = curly_make_from_tuple<std::vector<int>>(std::make_tuple()); // {}
auto vec2 = curly_make_from_tuple<std::vector<int>>(std::make_tuple(2, 3)); // {2, 3}
make_from_tuple
,
P0209r2的原始论文似乎没有讨论
T(params...)
和
T{params...}
的两种替代方法,可能是因为所有类似的
make_
实用程序方法都已经在使用圆括号初始化。
最佳答案
因为在C++ 98中无法使用braced-init-list初始化结构。
因此,为了保持一致,新的标准库功能使用了与STL中使用的初始化形式相同的初始化形式。
而且,出于兼容性原因,它从未更改为列表初始化:列表初始化不必与等效的带括号的初始化形式具有相同的含义。
关于c++ - 为什么标准首选的圆括号初始化 `make_<something>`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62029798/
标准中的std::make_函数,例如: std::make_unique和std::make_shared std::make_tuple std::make_from_tuple 全部使用内部圆括
STL 中有一些以 make_ 前缀开头的函数,如 std::make_pair、std::make_shared、std::make_unique 等。为什么使用它们而不是简单地使用构造函数更好?
我是一名优秀的程序员,十分优秀!