当前位置: 代码迷 >> Java相关 >> Java核心技术第一个列题我就打不出来.愁啊.,看看我哪里打的不对啊.
  详细解决方案

Java核心技术第一个列题我就打不出来.愁啊.,看看我哪里打的不对啊.

热度:224   发布时间:2006-08-06 19:52:44.0
Java核心技术第一个列题我就打不出来.愁啊.,看看我哪里打的不对啊.

import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;
import javax.swing.*;

import java.util.*;
public class Bounce {

public static void main(String[] args){
BounceFrame frame = new BounceFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
class Ball{
private static final int XSIZE = 15;
private static final int YSIZE = 15;
private double x = 0;
private double y = 0;
private double dx = 1;
private double dy = 1;
public void move(Rectangle2D bounds){
x = x + dx;
y = y + dy;
if(x<bounds.getMinX()){
x = bounds.getMinX();
dx = -dx;
}
if(x+XSIZE>=bounds.getMaxX()){
x = bounds.getMaxX()-XSIZE;
dx = -dx;
}
if(y<bounds.getMinY()){
y = bounds.getMinY();
dy = - dy;
}
if(y+YSIZE>=bounds.getMaxY()){
y = bounds.getMaxY()-YSIZE;
dy = -dy;
}
}
public Ellipse2D getShape(){
return new Ellipse2D.Double(x,y,XSIZE,YSIZE);
}
}
class BallPanel extends JPanel{
private ArrayList<Ball> balls = new ArrayList<Ball>();
public void add(Ball b){
balls.add(b);
}
public void paintCommponent(Graphics g){
super.paintComponent(g);
Graphics2D g2 = (Graphics2D)g;
for(Ball b : balls){
g2.fill(b.getShape());
}
}
}
class BounceFrame extends JFrame{
private BallPanel panel;
private JPanel buttonPanel;
private JButton btnStart,btnClose;
private static final int DEFAULT_WIDTH = 450;
private static final int DEFAULT_HEIGHT = 350;
public static final int STEPS = 1000;
public static final int DELAY = 3;
public BounceFrame(){
setSize(DEFAULT_WIDTH,DEFAULT_HEIGHT);
setTitle("Bounce");
setLayout(new BorderLayout());
panel = new BallPanel();
add(panel,BorderLayout.CENTER);
buttonPanel = new JPanel();
btnStart = new JButton("Start");
btnClose = new JButton("Close");
add(buttonPanel,BorderLayout.SOUTH);
buttonPanel.add(btnStart);
buttonPanel.add(btnClose);
btnStart.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent enent){
addBall();
}
});
btnClose.addActionListener(new ActionListener(){

public void actionPerformed(ActionEvent enent) {

System.exit(0);
}

});
}

public void addBall(){
try{
Ball ball = new Ball();
panel.add(ball);
for(int i = 1;i<=STEPS;i++){
ball.move(panel.getBounds());
panel.paint(panel.getGraphics());
Thread.sleep(DELAY);
}
}catch(Exception er){
er.printStackTrace();
}
}
}
为什么我运行的时候我画的哪个圆显示不出来.

搜索更多相关的解决方案: Java  核心  技术  

----------------解决方案--------------------------------------------------------
大家帮帮忙啊.
这才第一个例题啊.
以后的日子我怎么学啊.

----------------解决方案--------------------------------------------------------

像这种问题 你最好把你的错误写出来 一般问题都是出在你的环境变量没设好的


----------------解决方案--------------------------------------------------------
他那个程序我看了 能编译
就是不能达到效果
程序太长了
或者你完全按照他的例题打吧 试试
你好象自己修改了吧 这样找错误太难了
----------------解决方案--------------------------------------------------------
  相关解决方案