gpt4 book ai didi

c++ - std::allocator_traits::construct 调用了错误的构造函数

转载 作者:行者123 更新时间:2023-11-28 04:05:18 26 4
gpt4 key购买 nike

受到 Haskell 的启发,我尝试像这样实现 std::forward_list:

namespace std {
template <class T, class Allocator = allocator<T>>
class forward_list {
typename allocator_traits<Allocator>::template rebind_alloc<pair<forward_list<T>,T>> alloc;
typename allocator_traits<decltype(alloc)>::pointer ptr;
public:
// ...
void push_front(const T &value) {
auto newPtr = allocator_traits<decltype(alloc)>::allocate(alloc, 1);
allocator_traits<decltype(alloc)>::construct(alloc, newPtr, move(*this), value);
ptr = newPtr;
}
// ...
};
}

但是 push_front 中的 construct 调用的是复制构造函数,而不是移动构造函数。

我不明白。 construct 将转发引用作为参数,std::pair 的构造函数也是如此。因此来自 std::move 的右值引用应该完整无缺地交付。那为什么会这样呢?

(如果这是一个骗局,我很抱歉。Stack Exchange 的搜索系统无法解决这个问题。)

最佳答案

事实证明我错误地实现了移动构造函数:

forward_list(
forward_list &&other
) : forward_list(other, other.alloc) {}

必须是:

forward_list(
forward_list &&other
) : forward_list(move(other), other.alloc) {}

关于c++ - std::allocator_traits::construct 调用了错误的构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58828649/

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