gpt4 book ai didi

java - 如何从单个方法返回不同的数据类型?

转载 作者:行者123 更新时间:2023-12-01 07:19:42 25 4
gpt4 key购买 nike

我有以下代码。

我想根据状态代码获取不同的错误消息,如果成功,它应该返回对象..如何从一个方法返回这种不同的数据类型?

public EstimateTimeResult getEstimateTime(@RequestBody EstimateTimeCall estimateTimeCall,@PathVariable("empid") Long empid) throws IOException{
String URL=baseApi+"/estimates/time";
if(estimateTimeCall.getProduct_id().isEmpty() || estimateTimeCall.getProduct_id()==null || estimateTimeCall.getProduct_id()==""){
URL+="?start_latitude="+estimateTimeCall.getStart_latitude().toString()+"&start_longitude="+estimateTimeCall.getStart_longitude().toString();
}else{
URL+="?start_latitude="+estimateTimeCall.getStart_latitude().toString()+"&start_longitude="+estimateTimeCall.getStart_longitude().toString()+"&product_id="+estimateTimeCall.getProduct_id();
}
//Header Set
HttpHeaders requestHeaders=getHeader(empid);
//Do Request
HttpEntity requestEntity=new HttpEntity(requestHeaders);
ResponseEntity<EstimateTimeResult> response=restTemplate.exchange(URL,HttpMethod.GET,requestEntity,EstimateTimeResult.class);
org.springframework.http.HttpStatus statusCode=response.getStatusCode();
if(statusCode.value()==422){
return "Required start latitude,longitude";
}
return response.getBody();
}

最佳答案

简单:在 Java 中不可能(除非将返回类型更改为 Object,但这是非常糟糕的做法)。但是,“不推荐”是更好的说法。

当然,你可以这样做

class RequestResult {
static enum Result { PASS, FAIL };
private Whatever dataForPass;
private SomethingElse dataForFail;

Whatever get(){
return get((dataForFail)->throw new RequestError(dataForFail));
}

Whatever get(ErrorHandler handler){
if(dataForFail != null){
return handler.handle(dataForFail);
}
return dataForPass;
}
}

interface ErrorHandler{
Whatever handle(SomethingElse dataForFail) throws RequestError;
}

class RequestError extends RuntimeException{
SomethingElse data;
RequestError(SomethingElse data){
this.data=data;
}
}

那么你可以让RequestResult处理如何获取Whatever/SomethingElse数据,例如:

Whatever data = result.get((dataForFail) -> ...);
//or throws a RequestError if `SomethingElse` presented.
Whatever data = result.get();

然后创建这样一个对象;并根据实际结果设置该对象所需的数据。通过这样做,该方法的返回类型可以是RequestResult;您可以使用它来传递和失败请求。但这不是“标准做法”。

相反:您仅在方法通过时返回一些内容。否则,您将抛出一个适当的异常,其中包含调用者提出有用的错误消息所需的信息。

换句话说:你应该清楚地区分“快乐”和“不快乐”的路径。在 Java 中,当事情真的出错时,你可以通过抛出异常来实现这一点。

关于java - 如何从单个方法返回不同的数据类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43681648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com