- 论坛徽章:
- 0
|
本帖最后由 Frahm 于 2013-04-20 02:40 编辑
上次我问题的地址:
http://bbs.chinaunix.net/thread-4077214-1-1.html
这是之后我在stackoverflow上提问的地址:
http://stackoverflow.com/questio ... redirect=1#16060939
把我要做的简化一下,大概就是下面的这个模版类函数
- template<typename T, bool has_move_ctor>
- struct MoveAux;
- template<typename T>
- struct MoveAux<T, true> {
- static void doMove(T* dest, T* src) {
- new(dest) T(std::move(*src)); //move ctor
- }
- };
- template<typename T>
- struct MoveAux<T, false> {
- static void doMove(T* dest, T* src) {
- new(dest) T(*src); //copy ctor
- src->~T();
- }
- };
- template<typename T>
- inline doMove(T* dest, T* src) {
- MoveAux<T,/*a trait*/>::doMove(dest, src);
- }
复制代码 根据一个类是否可以通过 T t(std::move(other))来显式调用move ctor来特化操作, 问题是那个trait里应该传什么呢?如何能知道一个类是否有move ctor呢,如果有的话,这样写T t(std::move(other))一定会调用的吧? |
|