std::stack 的推导指引

来自cppreference.com
< cpp‎ | container‎ | stack

定义于头文件 <stack>
template<class Container>

stack(Container)

  -> stack<typename Container::value_type, Container>;
(1) (C++17 起)
template<class InputIt>

stack(InputIt, InputIt)

  -> stack</*iter-value-t*/<InputIt>>;
(2) (C++23 起)
template<class Container, class Alloc>

stack(Container, Alloc)

  -> stack<typename Container::value_type, Container>;
(3) (C++17 起)
template<class InputIt, class Alloc>

stack(InputIt, InputIt, Alloc)
  -> stack</*iter-value-t*/<InputIt>,

    std::deque</*iter-value-t*/<InputIt>, Alloc>>;
(4) (C++23 起)

stack 提供推导指引以允许从底层容器类型推导。

1) 从参数推导底层容器类型。
2) 从迭代器推导元素类型,以 std::deque</*iter-value-t*/<InputIt>> 为底层容器类型,其中 /*iter-value-t*/<InputIt> 代表 typename std::iterator_traits<InputIt>::value_type
3-4)(1-2) ,除了提供分配器。

这些重载仅若

才参与重载决议。

注意:库确定类型是否满足老式输入迭代器 (LegacyInputIterator) 的程度是未指定的,除了最低要求是整数类型不具备输入迭代器的条件。类似地,确定类型是否满足分配器 (Allocator) 是未指定的,除了最低要求是成员类型 Alloc::value_type 必须存在,且表达式 std::declval<Alloc&>().allocate(std::size_t{}) 在作为不求值操作数时必须为良构。

示例

#include <vector>
#include <stack>
int main() {
   std::vector<int> v = {1,2,3,4};
   std::stack s{v};    // 指引 #1 推导 std::stack<int, vector<int>>
}