这个java问题怎么解决
packagezhanghaifeng;importjavax.swing.*;importjava.awt.event.*;publicclasssssextendsJ...
package zhanghaifeng;
import javax.swing.*;
import java.awt.event.*;
public class sss extends JFrame implements ActionListener {
public static void main(String[] args) {
这是我编辑的一部分代码,是在eclipse中编辑的,但却被提示的错误如下;
Multiple markers at this line
- The serializable class sss does not declare a static final serialVersionUID field of type long
- The type sss must implement the inherited abstract method
ActionListener.actionPerformed(ActionEvent)
- Access restriction: The type JFrame is not accessible due to restriction on required library D:\张海锋
\lib\rt.jar
谁能帮我解决,谢谢 展开
import javax.swing.*;
import java.awt.event.*;
public class sss extends JFrame implements ActionListener {
public static void main(String[] args) {
这是我编辑的一部分代码,是在eclipse中编辑的,但却被提示的错误如下;
Multiple markers at this line
- The serializable class sss does not declare a static final serialVersionUID field of type long
- The type sss must implement the inherited abstract method
ActionListener.actionPerformed(ActionEvent)
- Access restriction: The type JFrame is not accessible due to restriction on required library D:\张海锋
\lib\rt.jar
谁能帮我解决,谢谢 展开
4个回答
展开全部
The serializable class sss does not declare a static final serialVersionUID field of type long
这句话是说没有给类加序列码,一般没用,可不加。
- The type sss must implement the inherited abstract method ActionListener.actionPerformed(ActionEvent) - Access restriction: The type JFrame is not accessible due to restriction on required library D:\
后面这几行是说你使用了ActionListener 接口但没实现接口内的函数actionPerformed(),等代码大全就没事了。
这句话是说没有给类加序列码,一般没用,可不加。
- The type sss must implement the inherited abstract method ActionListener.actionPerformed(ActionEvent) - Access restriction: The type JFrame is not accessible due to restriction on required library D:\
后面这几行是说你使用了ActionListener 接口但没实现接口内的函数actionPerformed(),等代码大全就没事了。
追问
我全部代码是复制粘贴的,别人运行的时候时是成功的,我只是多了个package zhanghaifeng;,但我把这行代码删除的时候却又被提示有其它错误
追答
哪只能说你没有贴全或贴错位了。你最好将代码全发过来
展开全部
1.添加一行代码private static final long serialVersionUID = 1L;
2.实现接口中actionPerformed(ActionEvent e)这个方法
2.实现接口中actionPerformed(ActionEvent e)这个方法
追问
怎么还是有错,你试一试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你有个方法没有被实现,你把具体代码贴出来看看!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
除了楼上方法,还可以试试:
把没用到的import删了,或者只留大的(如:java.awt.*)。
把没用到的import删了,或者只留大的(如:java.awt.*)。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询