函数指针,与c++类的联想

#include<stdio.h> typedef void (*functionPointerType)(void); typedef struct commandstruct {     char const* name;     functionPointerType Pfunction;     char const *help;     }; void commVersion(); vo
相关文章
相关标签/搜索