- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
有人可以向我解释为什么编译失败吗:
#include <iterator>
#include <iostream>
#include <unordered_set>
#include <utility>
#include <set>
template<typename T>
std::unordered_set<T> FailMove(std::set<T> &&set) {
std::unordered_set<T> response;
response.insert(std::make_move_iterator(set.begin()),
std::make_move_iterator(set.end()));
return response;
}
int main(int argc, char **argv) {
std::set<int> set{1, 3, 5, 7};
auto res = FailMove(std::move(set));
std::cout << res.size() << '\n';
return 0;
}
clang 输出(命令:clang++ -std=c++11 -otest test.cpp
)是:
In file included from test.cpp:1:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iterator:948:14: error: cannot
cast from lvalue of type 'const value_type' (aka 'const int') to rvalue reference type 'reference' (aka 'int &&'); types are not
compatible
return static_cast<reference>(*__i);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/unordered_set:830:34: note: in
instantiation of member function 'std::__1::move_iterator<std::__1::__tree_const_iterator<int, std::__1::__tree_node<int, void *> *,
long> >::operator*' requested here
__table_.__insert_unique(*__first);
^
test.cpp:10:12: note: in instantiation of function template specialization 'std::__1::unordered_set<int, std::__1::hash<int>,
std::__1::equal_to<int>, std::__1::allocator<int> >::insert<std::__1::move_iterator<std::__1::__tree_const_iterator<int,
std::__1::__tree_node<int, void *> *, long> > >' requested here
response.insert(std::make_move_iterator(set.begin()),
^
test.cpp:18:14: note: in instantiation of function template specialization 'FailMove<int>' requested here
auto res = FailMove(std::move(set));
^
1 error generated.
gcc 输出(命令:g++ -std=c++11 -otest test.cpp
):
In file included from /usr/include/c++/4.8/iterator:63:0,
from test.cpp:1:
/usr/include/c++/4.8/bits/stl_iterator.h: In instantiation of 'std::move_iterator<_Iterator>::value_type&& std::move_iterator<_Iterator>::operator*() const [with _Iterator = std::_Rb_tree_const_iterator<int>; std::move_iterator<_Iterator>::reference = int&&; std::move_iterator<_Iterator>::value_type = int]':
/usr/include/c++/4.8/bits/hashtable_policy.h:647:18: required from 'void std::__detail::_Insert_base<_Key, _Value, _Alloc, _ExtractKey, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits>::insert(_InputIterator, _InputIterator) [with _InputIterator = std::move_iterator<std::_Rb_tree_const_iterator<int> >; _Key = int; _Value = int; _Alloc = std::allocator<int>; _ExtractKey = std::__detail::_Identity; _Equal = std::equal_to<int>; _H1 = std::hash<int>; _H2 = std::__detail::_Mod_range_hashing; _Hash = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<false, true, true>]'
/usr/include/c++/4.8/bits/unordered_set.h:393:4: required from 'void std::unordered_set<_Value, _Hash, _Pred, _Alloc>::insert(_InputIterator, _InputIterator) [with _InputIterator = std::move_iterator<std::_Rb_tree_const_iterator<int> >; _Value = int; _Hash = std::hash<int>; _Pred = std::equal_to<int>; _Alloc = std::allocator<int>]'
test.cpp:10:3: required from 'std::unordered_set<T> FailMove(std::set<T>&&) [with T = int]'
test.cpp:18:37: required from here
/usr/include/c++/4.8/bits/stl_iterator.h:963:37: error: invalid initialization of reference of type 'std::move_iterator<std::_Rb_tree_const_iterator<int> >::reference {aka int&&}' from expression of type 'std::remove_reference<const int&>::type {aka const int}'
{ return std::move(*_M_current); }
但是这段代码在两个编译器中编译都没有问题:
#include <iterator>
#include <iostream>
#include <unordered_map>
#include <utility>
#include <map>
template<typename K, typename V>
std::unordered_map<K, V> FailMove(std::map<K, V> &&map) {
std::unordered_map<K, V> response;
response.insert(std::make_move_iterator(map.begin()),
std::make_move_iterator(map.end()));
return response;
}
int main(int argc, char **argv) {
std::map<int, int> map{{1, 1}, {3, 3}, {5, 5}, {7, 7}};
auto res = FailMove(std::move(map));
std::cout << res.size() << '\n';
return 0;
}
测试的 clang 版本:
Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)
Target: x86_64-apple-darwin14.3.0
Thread model: posix
测试的 gcc 版本:
g++ (Ubuntu 4.8.2-19ubuntu1) 4.8.2
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
最佳答案
短版是set::begin()
返回 const_iterator
同时map::begin()
返回 iterator
.您不能从 const_iterator
move .
长版本是关联容器的“Key”组件被视为const
在容器内。 set
仅包含一个 Key 组件。 map
包含 Key 组件和 Value 组件。 set
的值是 key 。 map
的值是std::pair< const Key, Value >
.
这是因为以改变元素顺序的方式修改标准容器的 Key 组件会破坏容器的不变量。即使您打算很快丢弃它也是如此,因为即使遍历、破坏或其他任何东西都可以通过编辑关键组件来破坏(理论上)!
当您从迭代器 move 时 it
,它会尝试转换 *it
至 value_type&&
.对于 const 迭代器,*it
返回 value_type const&
, 转换失败。
在map
的情况下, move 会 move Value 组件,并复制 Key 组件。
关于std::move 和 std::make_move_iterator 的 C++11 编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31051466/
这个让我彻底糊涂了。在下面的示例中,我得到了错误: error C2664: 'void std::unique_ptr::swap(std::unique_ptr &&)' : cannot con
我有一个问题: 当我尝试通过vector算法将数据从(带有unique_ptr的list)移至(带有unique_ptr的std::copy)时,虽然成功,但是却在运行中令人迷惑!这是一个代码: st
我有一个 vector 的 vector ,我想将它们一个接一个地连接起来形成一个长 vector 。这可以通过在末尾插入来完成。灵感来自 this question ,我在想,使用 make_mov
从 C++11 开始,要将一些 vector y 附加到另一个 vector x,您可以这样做: x.insert(x.end(), std::make_move_iterator(y.begin()
有人可以向我解释为什么编译失败吗: #include #include #include #include #include template std::unordered_set Fail
我期待 std::make_move_iterator总是会 move 内容,但似乎不会。 看起来是在vector中 move 元素但不在vector . 请看下面的代码片段: #include #
我是一名优秀的程序员,十分优秀!