当前位置: 代码迷 >> J2SE >> java异常:the hierarchy of type "类名" is inconsistent
  详细解决方案

java异常:the hierarchy of type "类名" is inconsistent

热度:245   发布时间:2016-04-24 12:39:27.0
java错误:the hierarchy of type "类名" is inconsistent
我写了个类

public class J_ActionListener implements ActionListener{
public void actionPerformed(ActionEvent e){
......
}

}


该引入的包都引入了,eclipse提示我错误:the hierarchy of type J_ActionListener is inconsistent
这是哪儿的问题呢?

jdk6.0

------解决方案--------------------
等级类型J_ActionListener不一致
------解决方案--------------------
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class Aa implements ActionListener{
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
}
}
我测试了.没有你说的那个错误
楼主看看.是不是哪里不对!
------解决方案--------------------
等级类型不一致 
你实现的接口的时候 用工具自动实现 也许是你自己写错了什么
------解决方案--------------------
肯定是缺包,或者环境有问题。。。
  相关解决方案