Multiple markers at this line - The serializable class HelloWorld does not declare a static final serialVersionUID field of type long - The public type HelloWorld must be defined in its own file - The type HelloWorld is already defined

来源:-

Atendu_陈

2015-01-23 16:54

import java.awt.*;     //引入java.awt包中的类 

import java.applet.*;  //引入java.applet包中的类


public class HelloWorld extends Applet //这里有小错误。不知道什么意思怎么改?



public void paint(Graphics g ) 


{                    


g.drawString("Hello World!",5,35);


}                


}


写回答 关注

1回答

  • 伊兮尘昔
    2015-01-23 17:49:20

    把你的整体代码贴一下可以吗?从错误上来看是类不存在或者是转型的时候出的错误

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165638 学习 · 17587 问题

查看课程

相似问题