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

📄 framedemo.java

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

class frameDemo
{
	public static void main(String args[])
	{
		Frame f = new Frame("It's my frame");

//		f.setBacground(Color.blue);Why when I use color it's always wrong?
		f.setSize(111,111);
		f.setVisible(true);
		System.out.print(":)");  //It won't be displayed on the frame,rather it will be displayed on the System
	}				 //and I wonder why I have to use Ctrl+C to close the frame?
}

⌨️ 快捷键说明

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