接口开发中应验返回结果类型(String HashMap Map)

接口开发中验证返回结果类型(String HashMap Map)/*if(_resp instanceof Map){System.out.println(res:Ma

接口开发中验证返回结果类型(String HashMap Map)
/*
if(_resp instanceof Map)
   {
        System.out.println("res:Map");
   }
else if (_resp instanceof AnyType2AnyTypeMap)
   {
        System.out.println("res:AnyType2AnyTypeMap");
   }
else if (_resp instanceof AnyType2AnyTypeMapEntry)
   {
        System.out.println("res:AnyType2AnyTypeMapEntry");
   }
else
   {
        System.out.println("Invoke:"+_resp.getClass().getName());
        //System.out.println(_resp.getClass().getInterfaces());
   }


*/