其他分享
首页 > 其他分享> > attempting to use incompatible return type 提示 解决

attempting to use incompatible return type 提示 解决

作者:互联网

一、问题:方法返回类型上有红线,提示信息:... attempting to use incompatible return type 

要返回的类型和定义的类型不一致,在A方法中调用B方法,直接返回B方法的返回结果,

在B方法中返回的是 X 包下的 Response 对象,但是在A方法中返回的是 Y 包中的 Response 对象。

导致返回类型不一致 。

二、解决: 导包时导同一个包中的 Response 类,让返回类型一致,就OK了。
 

要注意导包是否正确

标签:返回,use,return,incompatible,类型,方法,Response
来源: https://blog.csdn.net/qq_38570633/article/details/120365884