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

📄 tester.java

📁 下载地址 金山毒霸杀毒软件V2008特别版 对本站有问题请点击这里 教育网用户下载 网通用户下载 电信用户下载 高速下载 FlashGet快车高速下载通道 迅雷高
💻 JAVA
字号:
import java.awt.*;
import java.awt.event.*;

// Set this file as main (choose it in the
// project window, then press F8) to run the
// application version.
// See "TestApplet.java" for instructions on
// how to run the applet version

// Click in the window to draw shapes. Notice how
// the output is captured in the process window.

public class Tester extends MainFrame
{

	public static void main(String args[])
	{
		System.out.println("Starting App");
		System.err.println("Starting err app");
		MainFrame f = new MainFrame();
		f.add(new DrawCanvas(), "Center");
		f.setSize(300,300);
		f.show();
	}


}

⌨️ 快捷键说明

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