为了账号安全,请及时绑定邮箱和手机立即绑定

这个程序没有主函数,怎么能运行通过?

这个程序没有主函数,怎么能运行通过?

二徒弟 2016-11-20 19:29:03
package com.imooc; import java.awt.*; import java.awt.event.*; import java.applet.*; public class BallThread extends Applet implements Runnable{ Thread red, blue; Graphics redPen, bluePen; int t=0; public void init(){ red = new Thread(this); blue = new Thread(this); redPen = getGraphics(); bluePen = getGraphics(); redPen.setColor(Color.red); bluePen.setColor(Color.blue); } public void start(){ red.start(); blue.start(); } public void run(){ while(true){ t=t+1; if(Thread.currentThread()==red){ if(t>100)t=0; redPen.clearRect(0,0,110,400); redPen.fillOval(50,(int)(1.0/2*t*9.8),15,15); try{ red.sleep(40); }catch(InterruptedException e){} }else if(Thread.currentThread()==blue){ bluePen.clearRect(120,0,900,500); bluePen.fillOval(120+7*t,(int)(1.0/2*t*9.8),15,15); try{ blue.sleep(40); }catch(InterruptedException e){} } } } }
查看完整描述

3 回答

?
慕运维1139315

TA贡献84条经验 获得超21个赞

这不是线程吗?Applet应该能运行吧

查看完整回答
反对 回复 2016-11-21
?
望远

TA贡献1017条经验 获得超1032个赞

java applet程序运行时不需要main方法


查看完整回答
反对 回复 2016-11-20
  • 3 回答
  • 1 关注
  • 1287 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信