我们假设给定的方法
public static Integer getVal()
{
return 10;
}
而且,
getVal().valueOf(12);
我们知道它返回12?
为什么它返回12?
因为Interger.valueOf()是一个静态方法。