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

📄 appleteam.java

📁 java关于Applet的一些简单实例
💻 JAVA
字号:
import java.awt.*;
import java.applet.*;
public class AppletEam extends Applet{
	public void init(){
		this.setBackground(Color.GRAY);
	}
	public void paint(Graphics g){
		g.drawString("hello world", 10, 50);
		this.setForeground(Color.white);
	}
	public void setRed(){
		this.setBackground(Color.red);
	}
	public void setGreen(){
		this.setBackground(Color.green);
	}

}

⌨️ 快捷键说明

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