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

📄 framedemo_gui.java

📁 JAVA程序设计课程中各章节的程序实例。
💻 JAVA
字号:
/**
*A simple frame program in GUI
*2004.11.26. xhcprince
*/
import java.awt.*;
import java.applet.*;

public class frameDemo_GUI
{
	public static void main(String args[])
	{
		myframe f = new myframe("I will be tall!");
		f.setVisible(true);
		f.setSize(300,160);
	}
}

class myframe extends Frame
{
	public myframe(String s)
	{
		super(s);
	}
}

/*The method below is also right!!!
public class frameDemo_GUI
{
	public static void main(String args[])
	{
		Frame f = new Frame("I will be tall");
		f.setVisible(true);
		f.setSize(300,160);
	}
}
*/

⌨️ 快捷键说明

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