Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2335508
  • 博文数量: 168
  • 博客积分: 3184
  • 博客等级: 中校
  • 技术积分: 3959
  • 用 户 组: 普通用户
  • 注册时间: 2009-05-12 18:57
文章存档

2019年(1)

2018年(2)

2017年(3)

2016年(15)

2015年(10)

2014年(60)

2011年(1)

2010年(76)

分类: LINUX

2010-07-10 11:39:26

#include
 
typedef int (*func)(int ,int);
 
struct mystruct
{
 int a;
 int b;
 func foo;
};
 
int function(int a,int b)
{
 return a+b;
}
 
struct mystruct  myobject=
     {
      .a =1,
      .b =2,      //加点表示对特定的成员变量赋值
      .foo=function
     };
 
int main(void)
{
 printf("%d\n",myobject.foo(myobject.a,myobject.b));
 return 0;
}

阅读(2192) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~