1. 程式人生 > >結構體中使用函式指標

結構體中使用函式指標

 struct kobj _ type
 {
 void (*release)(struct kobject *);
 struct sysfs _ ops * sysfs _ ops;
 struct attribute ** default _ attrs;
};

結構體中使用了函式指標release,我的理解是指向只有一個引數struct kobject *的函式。