Chinaunix首页 | 论坛 | 博客
  • 博客访问: 988618
  • 博文数量: 158
  • 博客积分: 4380
  • 博客等级: 上校
  • 技术积分: 2367
  • 用 户 组: 普通用户
  • 注册时间: 2006-09-21 10:45
文章分类

全部博文(158)

文章存档

2012年(158)

我的朋友

分类: C/C++

2012-11-20 11:24:24

#include
using namespace std;

struct A {
    static void (A::*pfn)();
    void foo(){ cout << "a" << endl; }
};
void (A::*pfn)()=&A::foo;

int main() {
    pfn; // it's right, becasue pfn is a global variant
    A a;
    (a.*pfn)();
}

//////////////////////////////////////////////////////////////////////////////////

#include
using namespace std;

struct A {
    static void (A::*pfn)();
    void foo(){ cout << "a" << endl; }
};
void (A::*A::pfn)()=&A::foo;

int main() {
    // pfn; // it's wrong, becasue pfn is a member variant of A
    A a;
    (a.*A::pfn)();
}

阅读(1409) | 评论(6) | 转发(0) |
0

上一篇:发现VS2005的一个bug

下一篇:[暂存代码]

给主人留下些什么吧!~~

网友评论2012-11-20 11:25:00

Zhuyie
variant -> variable