码迷,mamicode.com
首页 > 其他好文 > 详细

从std::function中抽离出函数指针类型

时间:2015-02-13 11:33:09      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

template <typename Function>
struct function_traits : public function_traits < decltype(&Function::operator()) >
{

};

template <typename ClassType, typename ReturnType, typename Args>
struct function_traits < ReturnType(ClassType::*)(Args) const >
{
typedef ReturnType(*pointer)(Args);
typedef std::function<ReturnType(Args)> function;
};

 

测试代码:

class A
{
public:
void Test(int aaaa)
{

}
};

 

A a;
std::function<void(int)> f = std::bind(&A::Test, a, std::placeholders::_1);
std::string name = typeid(function_traits<decltype(f)>::pointer).name();

从std::function中抽离出函数指针类型

标签:

原文地址:http://www.cnblogs.com/towik/p/4289844.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!