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

📄 moveableshape.java

📁 用java实现接口,实现不同图形的移动效果,主要是演示接口的用法
💻 JAVA
字号:
import java.awt.*;

/**
 * Created by IntelliJ IDEA.
 * User: Administrator
 * Date: 2006-11-21
 * Time: 20:32:47
 * To change this template use File | Settings | File Templates.
 */
public interface MoveableShape {
    void draw(Graphics g);
     void move(int x, int y);
}

⌨️ 快捷键说明

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