gpt4 book ai didi

java - 在类里面找不到主要方法

转载 作者:行者123 更新时间:2023-12-02 11:04:47 25 4
gpt4 key购买 nike

import java.applet.Applet;
import java.awt.Color;
import java.awt.Graphics;

class Ball {

int x, y, radius, dx, dy;
Color BallColor;

public Ball(int x, int y, int radius, int dx, int dy, Color bColor) {
this.x = x;
this.y = y;
this.radius = radius;
this.dx = dx;
this.dy = dy;
BallColor = bColor;
}

}

public class Bounce extends Applet implements Runnable {

Ball redBall;

public void init() {
redBall = new Ball(250, 80, 50, 2, 4, Color.red);
Thread t = new Thread(this);
t.start();
}

public void paint(Graphics g) {
g.setColor(redBall.BallColor);
setBackground(Color.pink);
g.fillOval(redBall.x, redBall.y, redBall.radius, redBall.radius);
g.drawLine(150, 400, 50, 500);
g.drawLine(150, 400, 450, 400);
g.drawLine(50, 500, 350, 500);
g.drawLine(450, 400, 350, 500);
g.drawRect(50, 500, 20, 100);
g.drawRect(330, 500, 20, 100);
g.drawLine(450, 400, 450, 500);
g.drawLine(430, 500, 450, 500);
g.drawLine(430, 500, 430, 420);
}

public void run() {
while (true) {
try {
displacementOperation(redBall);
Thread.sleep(20);
repaint();
} catch (Exception e) {
}
}
}

public void displacementOperation(Ball ball) {
if (ball.y >= 400 || ball.y <= 0) {
ball.dy = -ball.dy;
}
ball.y = ball.y + ball.dy;
}

}

当我编译并运行代码时,它说在Bounce类中找不到main方法,请将该方法定义为public static void main(String [] args)。如果有人指出问题所在,我不知道如何解决此问题。谢谢

最佳答案

您可以在启用了applet的浏览器上运行此Applet。用以下方法启动小程序。

public void init() // This method works as like main.

您只需要在html页面上配置applet标签即可运行此代码。
<applet  code   = "Bounce.class"
width = "500"
height = "300">
</applet>

关于java - 在类里面找不到主要方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20004104/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com