码迷,mamicode.com
首页 > 编程语言 > 详细

C 语言中struct的函数实现

时间:2016-07-13 15:29:06      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdio.h>


typedef struct _test
{
    void (*pFunction)();
}STest;

void display()
{
    printf("hello function\n");
}


void main(void)
{
    STest test;
    test.pFunction = display;

    test.pFunction();
}

C语言中不像C++能够直接定义函数,以前学习数据结构用的是C++版的数据结构,对C++的新特性没有说明,导致以前一直不知道这个问题。

最近在看linux驱动资料,发现struct全都是使用的函数指针的方式编写,百度之后才知道linux下struct中直接写函数是不能够编译的、

C 语言中struct的函数实现

标签:

原文地址:http://www.cnblogs.com/luyufan498/p/5666934.html

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