码迷,mamicode.com
首页 > 系统相关 > 详细

linux内核中驱动开发常见的相似多态

时间:2014-07-06 15:44:49      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:blog   http   2014   art   linux   io   

#include<stdio.h>
#include<stdlib.h>
struct test
{
	char name[20];
	void (*func)(char *);
};
void tttfunc(char *name)
{
	printf("current is %d\n",__LINE__);
	printf("%s\n",name);
}
int main()
{
	struct test ttt=
	{
		.name = "zhang",
		.func = tttfunc,
	};
	ttt.func(ttt.name);
	return 0;
}
bubuko.com,布布扣

linux内核中驱动开发常见的相似多态,布布扣,bubuko.com

linux内核中驱动开发常见的相似多态

标签:blog   http   2014   art   linux   io   

原文地址:http://www.cnblogs.com/mfrbuaa/p/3825406.html

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