EL表达式能否判断 对象 a instanceof Class B?
如题,用java写可以写成:
if(a instanceof B){ B b=(B)a; }else if(a instanceof C){ C c=(C)a; }