📄 framedemo_gui.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 + -