当前位置:  技术问答>java相关

请帮忙看看这个程序(在线等)

    来源: 互联网  发布时间:2015-07-18

    本文导语:  请写出错误原因。 import java.awt.*; import java.applet.*; import java.util.*; public class QixTest extends Applet implements Runnable{ Thread imageThread=null; Random rnd=new Random(); Rectangle bounceRect; Rectangle colorBounce; BouncyPoint endPoint1,endPo...

请写出错误原因。
import java.awt.*;
import java.applet.*;
import java.util.*;
public class QixTest extends Applet implements Runnable{
Thread imageThread=null;
Random rnd=new Random();
Rectangle bounceRect;
Rectangle colorBounce;
BouncyPoint endPoint1,endPoint2;
BouncyPoint R_Bouncer,G_Bouncer,B_Bouncer;
int x1,x2,y1,y2;
public void init(){
bounceRect=getBounds();
bounceRect.x=0;
bounceRect.y=0;
}
public void start(){
sowSeed();
if(imageThread==null){
imageThread=new Thread(this);
imageThread.start();
}
public void stop()
{
if((imageThread!=null)&&imageThread.isAlive())
{
imageThread.stop();
}
imageThread=null;
}
public void run()
{
int i=0;
Thread me=Thread.currentThread();
me.sePriority(Thread.MIN_PRIORITY);
while(imageThread==me)
{
repaint();
try{
Thread.sleep(10);
}catch(InterruptedExpection e){}
i++;
if(i==1000){
sowSeed();
i=0;
}
}
}
public void update(Graphics g){
endPoint1.carryOnBouncing();
endPoint2.carryOnBouncing();
R_Bouncer.carryOnBouncing();
G_Bouncer.carryOnBouncing();
B_Bouncer.carryOnBouncing();
g.setColor(new Color(R_Bouncer.x,G_Bouncer.x,B_Bouncer.x));
g.drawLine(endPoint.x,endPoint.y,endPoint2.x,endPoint2.y);
}
public void sowSeed(){
x1=4+((rnd.nextInt()&1023)%(bounceRect.width-8));
x2=4+((rnd.nextInt()&1023)%(bounceRect.width-8));
y1=4+((rnd.nextInt()&1023)%(bounceRect.height-8));
y2=4+((rnd.nextInt()&1023)%(bounceRect.height-8));
endPoint1=new BouncyPoint(bounceRect,x1,y1,-1.0,1,5);
colorBounce=new Rectangle(0,0,255,255);
R_Bouncer=new BouncyPoint(colorBounce,200,0,-1.0,0.0);
B_Bouncer=new BouncyPoint(colorBounce,200,0,-2.0,0.0);
}
class BouncyPoint extends Point{
Rectangle boundingBox;
double x_direction;
double y_direction;
BouncyPoint(Rectangle limits,int startx,int starty,double dx,double dy)
{
super(startx,starty);
boundingBox=limits;
x_direction=dx;
y_direction=dy;
}
public void carryOnBouncing()
{
x+=(int)x_direction;
if(!boundingBox.contains(x,y)){
y-=(int)y_direction;
y_direction=-y_direction;
}
}
}
--------------------Configuration: Example3 - JDK version 1.4 --------------------
C:JCreatorMyProjectsApplet.javaQixTest.java:23: illegal start of expression
public void stop()
        ^
C:JCreatorMyProjectsApplet.javaQixTest.java:67: ';' expected
}
         ^
C:JCreatorMyProjectsApplet.javaQixTest.java:87: '}' expected
}
         ^
C:JCreatorMyProjectsApplet.javaQixTest.java:9: cannot resolve symbol
symbol  : class BouncyPoint  
location: class QixTest
BouncyPoint endPoint1,endPoint2;
        ^
C:JCreatorMyProjectsApplet.javaQixTest.java:10: cannot resolve symbol
symbol  : class BouncyPoint  
location: class QixTest
BouncyPoint R_Bouncer,G_Bouncer,B_Bouncer;
        ^
C:JCreatorMyProjectsApplet.javaQixTest.java:4: QixTest should be declared abstract; it does not define run() in QixTest
public class QixTest extends Applet implements Runnable{
       ^
C:JCreatorMyProjectsApplet.javaQixTest.java:18: cannot resolve symbol
symbol  : method sowSeed  ()
location: class QixTest
sowSeed();
                ^
7 errors

Process completed.

|
import java.awt.*;
import java.applet.*;
import java.util.*;
import java.io.*;
public class QixTest extends Applet implements Runnable{
Thread imageThread=null;
Random rnd=new Random();
Rectangle bounceRect;
Rectangle colorBounce;
BouncyPoint endPoint;//加这1个变量
BouncyPoint endPoint1,endPoint2;
BouncyPoint R_Bouncer,G_Bouncer,B_Bouncer;
int x1,x2,y1,y2;
public void init(){
bounceRect=getBounds();
bounceRect.x=0;
bounceRect.y=0;
}
public void start(){
sowSeed();
if(imageThread==null){
imageThread=new Thread(this);
imageThread.start();
}
}
public void stop()
{
if((imageThread!=null)&&imageThread.isAlive())
{
imageThread.stop();
}
imageThread=null;
}
public void run()
{
int i=0;
Thread me=Thread.currentThread();
//me.sePriority(Thread.MIN_PRIORITY);
while(imageThread==me)
{
repaint();
try{
Thread.sleep(10);
}catch(InterruptedException e){}//Expection 写错了
i++;
if(i==1000){
sowSeed();
i=0;
}
}
}
public void update(Graphics g){
endPoint1.carryOnBouncing();
endPoint2.carryOnBouncing();
R_Bouncer.carryOnBouncing();
G_Bouncer.carryOnBouncing();
B_Bouncer.carryOnBouncing();
g.setColor(new Color(R_Bouncer.x,G_Bouncer.x,B_Bouncer.x));
g.drawLine(endPoint.x,endPoint.y,endPoint2.x,endPoint2.y);//
}
public void sowSeed(){
x1=4+((rnd.nextInt()&1023)%(bounceRect.width-8));
x2=4+((rnd.nextInt()&1023)%(bounceRect.width-8));
y1=4+((rnd.nextInt()&1023)%(bounceRect.height-8));
y2=4+((rnd.nextInt()&1023)%(bounceRect.height-8));
endPoint1=new BouncyPoint(bounceRect,x1,y1,-1.0,1,5);//还剩下一个错误了,你自己差一下这,好象是你的参数不对。
colorBounce=new Rectangle(0,0,255,255);
R_Bouncer=new BouncyPoint(colorBounce,200,0,-1.0,0.0);
B_Bouncer=new BouncyPoint(colorBounce,200,0,-2.0,0.0);
}
class BouncyPoint extends Point{
Rectangle boundingBox;
double x_direction;
double y_direction;
BouncyPoint(Rectangle limits,int startx,int starty,double dx,double dy)
{
super(startx,starty);
boundingBox=limits;
x_direction=dx;
y_direction=dy;
}
public void carryOnBouncing()
{
x+=(int)x_direction;
if(!boundingBox.contains(x,y)){
y-=(int)y_direction;
y_direction=-y_direction;
}
}
}
}//少一个}
你看看吧,就剩下一个错误了,我在程序里面注释了你看看吧,可能是参数不对。

|
BouncyPoint(x1,y1,-1.0,1,5);
BouncyPoint(Rectangle limits,int startx,int starty,double dx,double dy)
你看看,你在程序里定义的构造器和你用的BouncyPoint(x1,y1,-1.0,1,5);
参数类型也不对啊,
问题终于找到了,累死我了。这下知道怎么做了吧。
如果你一定要用BouncyPoint(x1,y1,-1.0,1,5);这样的构造器初始化你的类,那就要在BouncyPoint类里面自己在加一个如你BouncyPoint(x1,y1,-1.0,1,5);这样形式的构造器

|
public void start(){
sowSeed();
if(imageThread==null){
imageThread=new Thread(this);
imageThread.start();
                  //这儿少了一个}
}

    
 
 

您可能感兴趣的文章:

  • 关于全选的问题大家帮忙看看~
  • 我的Solaris启动不了了,请帮忙看看
  • iptables规则问题,请大家帮忙看看怎么回事
  • 各位帮忙看看网络配置问题
  • 大家帮忙看看错误如何解决
  • 高手帮忙看看cr3的值
  • 虚拟机扩容失败,下面提示的错误,帮忙看看
  • 才鸟问题,请帮忙看看
  • 那位朋友帮忙看看这是什么意思?多谢
  • 大吓帮忙看看?
  • 帮忙看看下面错误,怎样解决!!!
  • 一个200分的问题,大家帮忙看看:)谢了!关于Linux-PAM的
  • 一个shell的小问题,大家帮忙看看啊!
  • 请帮忙看看。
  • 请大家帮忙看看,编译内核后无法挂载root fs, 机器无法启动
  • 帮忙看看这是个什么错误啊?
  • 帮忙给个意见看看。
  • 大家帮忙看看,是什么问题
  • 在浏览器里连接本机的菜鸟问题,帮忙看看!
  • 请帮忙看看!!!!!!!!!!!!!!!!!!!!!
  • 用jbuilder开发的程序,其中用到了xylayout,将应用程序做成了jar文件,运行jar文件时,提示错误。请大家多帮忙
  • 帮忙写一个小程序readkey
  • jni 中一个简单程序,请大家帮忙!
  • 关于程序移植,请知道的帮忙,分会加的
  • 用JAVA编一个程序,测试网络速度~~高手帮忙
  • 高手帮忙,pkg安装包结束后,如何启动GUI程序?
  • 100分请帮忙,我不能编译servlet程序
  • 编写把一java程序中所有的print语句都删除,帮忙分析一下思路。
  • 想做个程序,帮忙提个纲吧,哥们!!!!
  • 不能运行编译出来的程序,请大家帮忙看看
  • 帮忙写一段程序(LINUX文件管理)
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 努力努力再努力,帮忙帮忙来帮忙!
  • 在servlet中有一个关于单引号输出的问题,请大家帮忙,帮忙,帮帮忙!!
  • 小问题,你一定能够帮忙!——菜鸟请求帮忙!!
  • 帮忙帮忙如何设置变量pathclass
  • 没人帮忙吗?我想用JAVA编一个像WINDOW中的画图软件,现在出现了如下问题,请各位老哥老姐帮帮忙
  • 帮帮忙!SCO OpenServer 5.0.5 的root用户口令丢了,怎么找回来啊,帮帮忙!!!!!!
  • 我用smartupload组件遇到问题了,请帮忙!!
  • webmail问题,请高手帮忙!!!谁会使用IMP 3.0????!!!
  • 脚本问题,帮忙
  • 高手帮忙解释
  • 求教求教,shell问题...各位大哥,帮忙下
  • DELL服务器,安装RedHat EAS3.0,装完了,连不上SSH。。。。。哪位大虾帮忙!!急啊 !!!!
  • 关于聊天室的若干疑问!!!请各位大虾帮忙!
  • 有个问题?请帮忙!
  • 请求各位帮忙,关于绘制图像
  • 帮忙找个工作。
  • 请帮忙推荐几个下载java电子书的网站,35分献上!
  • 我怎么不能编译servlet?请帮忙!!!谢谢!!!
  • c/c++ iis7站长之家
  • 急需各位帮忙???送上100分!!!


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3