(int *)x和int (*x)的区别

Int (*x)和int *x相同,声明了一个整数指针x。

(int *)x是强制类型转换,例如,x是一个char指针:

char * x = ' a

(int *)x;

做完这个,X就是塑料指针了。