解决方法
与void *指针和指向不完整类型的指针一样,在函数指针上不允许使用算术运算.
例如,关于加法运算符的C99§6.5.6说:
For addition,either both operands shall have arithmetic type,or one
operand shall be a pointer to an object type and the other shall have
integer type. (Incrementing is equivalent to adding 1.)
一个函数类型不是一个对象类型,所以为操作符的操作数提供一个指向函数的指针是违反这个约束的.
作为C语言的扩展,GCC编译器允许对指向函数的指针进行算术(并且指向void).它实现这一点,就像指向对象的大小为1.请注意,在符合标准的模式中,它会对此类代码发出警告.