我有一个公共抽象类,我正在尝试使用该getClass()
方法,因为我需要来自扩展我的抽象类的类的信息。一个例子是这样的:
public String getName() {
return getClass().getSimpleName();
}
但是,IntelliJ 报告了这一点:
Ambiguous method call. Both
getClass () in Object and
getClass () in Object match.
代码运行良好,但在我的 IDE 中有数十个错误警告有点不合我意。它以很多误报扰乱了我的工作流程。
为什么会显示这些错误,我该怎么做才能看不到它们?