public static <T> ServerResponse<T> createSuccess(T data){
return new ServerResponse<T>(ResponseCode.SUCCESS.getCode(),data);
}
当data 是String 类型时,new ServerResponse<T>(ResponseCode.SUCCESS.getCode(),data)这个构造器为什么没有调用ServerResponse(int status, String msg)构造方法,而是调用ServerResponse(int status, T data)这个?