函数指针定义的一个错误

1. 问题

粉丝提问:某个函数指针的使用:编译时出错了。

成都创新互联公司是一家以网络技术公司,为中小企业提供网站维护、成都网站设计、成都网站制作、网站备案、服务器租用、申请域名、软件开发、成都微信小程序等企业互联网相关业务,是一家有着丰富的互联网运营推广经验的科技公司,有着多年的网站建站经验,致力于帮助中小企业在互联网让打出自已的品牌和口碑,让企业在互联网上打开一个面向全国乃至全球的业务窗口:建站欢迎来电:13518219792

type defaults to 'int' in declaration of 'on_touch_messgae_handle'[-Wimplicit-int] typedef(*on_touch_messgae_handle)(touch_message_t);

粉丝源码如下:

2. 分析

1) 结构解析

 
 
 
 
  1. 1 struct touch_message                                                        
  2.  2 {
  3.  3     rt_uint16_t x;
  4.  4     rt_uint16_t y;  
  5.  5     rt_uint8_t event;   
  6.  6 };
  7.  7 typedef struct touch_message * touch_message_t;
  8.  8 typedef (*on_touch_messgae_handle)(touch_message_t);

首先看下7行这个类型定义:

 
 
 
 
  1. typedef struct touch_message * touch_message_t;

定义后

 
 
 
 
  1. touch_message_t 

等价于

 
 
 
 
  1. struct touch_message *

就是说我们如果用touch_message_t 定义的变量是一个struct touch_message类型的一个指针。

再来分析下8行这个定义:

 
 
 
 
  1. typedef (*on_touch_messgae_handle)(touch_message_t);

可以替换成下面这个定义

 
 
 
 
  1. typedef (*on_touch_messgae_handle)(struct touch_message *);

2) 分步解析

有的C语言基础不是很好的朋友,可能无法一眼看出来这个定义, 为了让新手更容易看懂,我们来看一下下面一个递进式的定义:

 
 
 
 
  1. int fun;

这是一个整型变量fun;

 
 
 
 
  1. int fun();

这是一个函数fun, 参数 :空 返回值:int型

 
 
 
 
  1. int fun(struct touch_message *);

这是一个函数fun, 参数 :struct touch_message *的一个指针 返回值:int型

上述的变化都好理解,下面我们将fun做如下修改:

 
 
 
 
  1. int (*fun)(struct touch_message *);

括号的优先级最高,(fun)一旦如此定义,那么fun就要先和结合, 所以fun变成了一个指针,

那么该指针指向什么呢?就需要看外面是如何定义的, 右边是(struct touch_message * ),左边是int, 所以说明指针指向的是一个函数,

参数 :struct touch_message *的一个指针 返回值:int型

举例:将函数my_fun赋值给函数指针fun。int my_fun(struct touch_message *) { } int (*fun)(struct touch_message *); fun = my_fun;

这里有一个隐藏的知识点,函数名其实也是一个地址,而且赋值的时候函数类型必须和函数指针类型一致。

 
 
 
 
  1. typedef int (*fun)(struct touch_message *);

如果左边再加上typedef呢?相当于是设置fun为新的类型,我们可以用fun来定义一个函数指针, 该函数类型同上。

举例 用新的类型定义一个函数指针变量,并给他赋值。typedef int (*fun)(struct touch_message *); int my_fun(struct touch_message *) { } fun fun_ptr; fun_ptr = my_fun;

然后将参数修改为,touch_message_t,就得到了粉丝的源码中的样子,

 
 
 
 
  1. typedef int (*fun)(touch_message_t);

但是粉丝的源码中定义的函数类型缺少了对函数返回值的描述,所以左侧增加一个int或者其他类型即可即可。

3. 函数指针

函数指针在linux内核中使用非常频繁,

比如字符设备,内核给多有的字符设备提供了一个统一的接口,我们对设备的所有操作被抽象成read、write、open、close等,并封装到结构体struct file_operations 中:

 
 
 
 
  1. struct file_operations {
  2.  struct module *owner;
  3.  loff_t (*llseek) (struct file *, loff_t, int);
  4.  ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
  5.  ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
  6.  ssize_t (*aio_read) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
  7.  ssize_t (*aio_write) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
  8.  int (*iterate) (struct file *, struct dir_context *);
  9.  unsigned int (*poll) (struct file *, struct poll_table_struct *);
  10.  long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
  11.  long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
  12.  int (*mmap) (struct file *, struct vm_area_struct *);
  13.  int (*open) (struct inode *, struct file *);
  14.  int (*flush) (struct file *, fl_owner_t id);
  15.  int (*release) (struct inode *, struct file *);
  16.  int (*fsync) (struct file *, loff_t, loff_t, int datasync);
  17.  int (*aio_fsync) (struct kiocb *, int datasync);
  18.  int (*fasync) (int, struct file *, int);
  19.  int (*lock) (struct file *, int, struct file_lock *);
  20.  ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int);
  21.  unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
  22.  int (*check_flags)(int);
  23.  int (*flock) (struct file *, int, struct file_lock *);
  24.  ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int);
  25.  ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int);
  26.  int (*setlease)(struct file *, long, struct file_lock **);
  27.  long (*fallocate)(struct file *file, int mode, loff_t offset,
  28.      loff_t len);
  29.  int (*show_fdinfo)(struct seq_file *m, struct file *f);
  30. };

那么我们应该如何定义该结构体变量并初始化呢?

 
 
 
 
  1. static struct file_operations hello_ops = 
  2. {
  3.  .open = hello_open,
  4.  .release = hello_release,
  5.  .read = hello_read,
  6.  .write = hello_write,
  7. };

函数定义如下:

 
 
 
 
  1. static int hello_open (struct inode *inode, struct file *filep)
  2. {
  3.  return 0;
  4. }
  5. static int hello_release (struct inode *inode, struct file *filep)
  6. {
  7.  return 0;
  8. }
  9. static ssize_t hello_read (struct file *filep, char __user *buf, size_t size, loff_t *pos)
  10. {
  11.  return size;
  12. }
  13. static ssize_t hello_write (struct file *filep, const char __user *buf, size_t size, loff_t *pos)
  14. {
  15.  return size;
  16. }

注意,函数的参数和返回值,必须严格按照结构体struct file_operations中的类型定义。

文章标题:函数指针定义的一个错误
网页URL:http://www.hantingmc.com/qtweb/news49/223699.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联