gpt4 book ai didi

c++ - 比较范围构造函数中的迭代器 value_type

转载 作者:太空狗 更新时间:2023-10-29 23:02:01 27 4
gpt4 key购买 nike

我正在为自定义容器编写范围构造器:

MyContainer(const InputIterator& first, 
const InputIterator& last,
const allocator_type& alloc = allocator_type())

并希望检查 InputIterator::value_type 是否与容器的 value_type 兼容。我最初尝试过:

static_assert(!(std::is_convertible<InputIterator::value_type, value_type>::value ||
std::is_same<InputIterator::value_type, value_type>::value), "error");

并达到了:

using InputIteratorType = typename std::decay<InputIterator>::type;
using InputValueType = typename std::decay<InputIteratorType::value_type>::type;
static_assert(!(std::is_convertible<InputValueType, value_type>::value ||
std::is_same<InputValueType, value_type>::value), "error");

但它总是断言,即使我使用 MyContainer::iterator 作为输入迭代器也是如此。

如何检查 InputIterator 是否兼容?

最佳答案

我猜你可能想要 std::is_constructible :

static_assert(std::is_constructible<
value_type,
decltype(*first)
>::value, "error");

或者,或者,std::is_assignable ,取决于您是从输入迭代器构造还是分配。

关于c++ - 比较范围构造函数中的迭代器 value_type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29856531/

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