资源说明:《疯狂java实战演义》光盘中的代码
各章所讲述的java代码 用于学习研究,内有详细解释
ball-部分代码
package org.crazyit.ball;
import java.io.IOException;
/**
* 道具对象
*
* @author yangenxiong yangenxiong2009@gmail.com
* @author Kelvin Mak kelvin.mak125@gmail.com
* @version 1.0
*
网站: 疯狂Java联盟 *
Copyright (C), 2009-2010, yangenxiong *
This program is protected by copyright laws. */ public abstract class Magic extends BallComponent { /** * 提供给子类调用的构造器 * * @param path * String 文件路径 * @param x * int x坐标 * @param y * int y坐标 */ public Magic(String path, int x, int y) throws IOException { super(path, x, y); } /** * 道具的功能 * * @param stitck * Stick * @return void */ public abstract void magicDo(Stick stick); }
网站: 疯狂Java联盟 *
Copyright (C), 2009-2010, yangenxiong *
This program is protected by copyright laws. */ public abstract class Magic extends BallComponent { /** * 提供给子类调用的构造器 * * @param path * String 文件路径 * @param x * int x坐标 * @param y * int y坐标 */ public Magic(String path, int x, int y) throws IOException { super(path, x, y); } /** * 道具的功能 * * @param stitck * Stick * @return void */ public abstract void magicDo(Stick stick); }
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。