如何解开像boost :: unwrap_reference这样的std :: reference_wrapper

时间:2012-04-02 07:39:57

标签: c++ c++11

我想要移植一些代码,它们对C ++ 11使用了boost :: unwrap_reference。代码调用很多成员函数,比如

template< typename T, typename Y>
void initialize( T _t, Y y)
{

    typename boost::unwrap_reference< T >::type & t = _t;

    t.doSomethingNastyWithY( y );
}   

// The function is called like this
struct DoSomething
{
     template<typename Y>
     void doSomethingNastyWithY(Y y)
     {
         // do stuff
     }
};

struct Object {};

DoSomething s;
Object obj;

int main()
{
    initialize( s, obj ); // Take a copy of DoSomething
    initialize( boost::ref(s), obj ); // Uses DoSomething as reference
}

我在STL中找不到与boost :: unwrap_reference等效的东西,还有其他直接的方法吗?

编辑:我稍微澄清了这个例子

1 个答案:

答案 0 :(得分:5)

有些事情:

template< typename T >
struct UnwrapReference;

template< typename T >
struct UnwrapReference { typedef T type; }

template< >
struct UnwrapReference< std::reference_wrapper< T > > { typedef T type; }

虽然未经测试,但这是您可能能够做到这一点的要点。