2012年(158)
分类: C/C++
2012-11-23 16:59:03
#include
using namespace std;
struct foo
{
void bar()
{
}
};
template
void test( M T::* )
{
}
void xxx()
{
}
int main()
{
test( &foo::bar ); // void (foo::* pf)( void )
是个整体,不可以分解成 void __thiscall(void) 和 struct foo
void* p = &xxx; // 函数指针不可以隐式转化为void*
}