⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 balldemo.java

📁 现在在国外大学里最流行的java学习软件,同时还有大量的example,在名为project的文件里.安装好后用bluej打开peoject的例子,可以进行你想要的任何变化.同时可以了解大量的源码
💻 JAVA
字号:
import java.awt.*;import java.awt.geom.*;/** * Class BallDemo - provides two short demonstrations showing how to use the  * Canvas class.  * * @author Michael Kolling and David J. Barnes * @version 2006.03.30 */public class BallDemo   {    private Canvas myCanvas;    /**     * Create a BallDemo object. Creates a fresh canvas and makes it visible.     */    public BallDemo()    {        myCanvas = new Canvas("Ball Demo", 600, 500);        myCanvas.setVisible(true);    }     /**     * Demonstrate some of the drawing operations that are     * available on a Canvas object.     */    public void drawDemo()    {        myCanvas.setFont(new Font("helvetica", Font.BOLD, 14));        myCanvas.setForegroundColor(Color.red);        myCanvas.drawString("We can draw text, ...", 20, 30);        myCanvas.wait(1000);        myCanvas.setForegroundColor(Color.black);        myCanvas.drawString("...draw lines...", 60, 60);        myCanvas.wait(500);        myCanvas.setForegroundColor(Color.gray);        myCanvas.drawLine(200, 20, 300, 50);        myCanvas.wait(500);        myCanvas.setForegroundColor(Color.blue);        myCanvas.drawLine(220, 100, 370, 40);        myCanvas.wait(500);        myCanvas.setForegroundColor(Color.green);        myCanvas.drawLine(290, 10, 320, 120);        myCanvas.wait(1000);        myCanvas.setForegroundColor(Color.gray);        myCanvas.drawString("...and shapes!", 110, 90);        myCanvas.setForegroundColor(Color.red);        // the shape to draw and move        int xPos = 10;        Rectangle rect = new Rectangle(xPos, 150, 30, 20);        // move the rectangle across the screen        for(int i = 0; i < 200; i ++) {            myCanvas.fill(rect);            myCanvas.wait(10);            myCanvas.erase(rect);            xPos++;            rect.setLocation(xPos, 150);        }        // at the end of the move, draw once more so that it remains visible        myCanvas.fill(rect);    }    /**     * Simulate two bouncing balls     */    public void bounce()    {        int ground = 400;   // position of the ground line        myCanvas.setVisible(true);        // draw the ground        myCanvas.drawLine(50, ground, 550, ground);        // crate and show the balls        BouncingBall ball = new BouncingBall(50, 50, 16, Color.blue, ground, myCanvas);        ball.draw();        BouncingBall ball2 = new BouncingBall(70, 80, 20, Color.red, ground, myCanvas);        ball2.draw();        // make them bounce        boolean finished =  false;        while(!finished) {            myCanvas.wait(50);           // small delay            ball.move();            ball2.move();            // stop once ball has travelled a certain distance on x axis            if(ball.getXPosition() >= 550 && ball2.getXPosition() >= 550) {                finished = true;            }        }        ball.erase();        ball2.erase();    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -