3

我在标准 (n4296)、23.2.3/4 (表 100) 中看到了对序列 stl 容器的要求,并阅读了一个采用参数迭代器的构造函数(X - 容器,i 和 j - 输入迭代器)

X(i, j)
X a(i, j)

要求容器的元素类型为 EmplaceConstructible。

Requires: T shall be EmplaceConstructible into X from *i

我认为可以通过为范围内的每个迭代器调用 std::allocator_traits::construct (m, p, *it) 方法来实现构造函数(其中 m - A 类型的分配器,p - 指向内存的指针,it - 迭代器[i; j),并且元素只有 CopyInsertable 概念是必需的,因为只为复制/移动提供了一个参数,而 EmplaceConstructible 概念要求元素从一组参数构造。这个决定有什么理由吗?

4

1 回答 1

7

CopyInsertable是一个二元概念——给定一个容器X,它适用于单一类型T,它需要有一个复制构造函数。但是,*i允许与 不同的类型T,只要有一种方法可以(隐式)T从构造*i

  char s[] = "hello world!";
  std::vector<int> v(std::begin(s), std::end(s));
  // int is EmplaceConstructible from char

Tis not 的(人为的)示例CopyInsertable

struct nocopy {
  nocopy(int) {}
  nocopy(nocopy const&) = delete;
  nocopy(nocopy&&) = delete;
};
int a[]{1, 2, 3};
std::vector<nocopy> v(std::begin(a), std::end(a));
于 2015-12-16T11:48:58.787 回答