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

📄 shape.java

📁 java课的作业
💻 JAVA
字号:
/*
 * Created on 2005-4-2
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package bubbletea;

import java.awt.Graphics2D;
import java.io.Serializable;

/**
 * @author roger
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public abstract class Shape implements Serializable{
	int x1,y1;
	int x2,y2;
	int R,G,B;
	float stroke;
	void draw(Graphics2D g2d){};
}

⌨️ 快捷键说明

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