int *f(),表示这个函数f,函数的返回值的类型是 int * int (*f)(),表示这是一个函数指针,它要指向一个函数才能有用,指向一个函数之后就可以用它来代替该函数,之后使用这个指针就相当于使用该函数. 例程 #include<stdio.h> int fun(int); int main(void) { int (*f1)(int); int (*f2)(int); f1 = fun; f2 = &fun;//注意上面的两种初始化函数指针的方法都是正确的,所以在初始化函数
1.InputStreamReader Reader与Writer是基于字符的IO操作接口,而InputStreamReader的read方法就是以字符为单位的读方法 /** * Reads characters into a portion of an array. * * @param cbuf Destination buffer * @param offset Offset at which to start storing characters * @param length Maxi