在C/C++中,意思是:无论pshort原先是什么类型,只要是可以转换为int型的类型,就强制为int型然后再+1,结果也是int型。比如pshort是double型,但为3.1415926,那么表达式(int)pshort+1的值为4。