GlobalResponse<?> result =new GlobalResponse<>();
result= Client.getValue(point);
Object o = result.getData()
后面怎么写呀?
public class GlobalResponse<T> implements Serializable {
private String code;
private String msg;
private T data;
...........
返回结果是这样的
{id=2525843, av=46208}
{id=2525430, av=42038}
如果能确定Client.getValue返回值中data的类型,那么直接指定GlobalResponse中的泛型,比如data是String类型,则
如果无法确定,那就只能用instanceOf来判断强转了