📄 exitframe.java
字号:
// ExitFrame.java// A very simple extension of JFrame that defaults to EXIT_ON_CLOSE for// its close operation. Relies on the 1.3 or higher SDK.//package jswing.ch08;import javax.swing.JFrame;public class ExitFrame extends JFrame { public ExitFrame() { super(); setDefaultCloseOperation(EXIT_ON_CLOSE); } public ExitFrame(String title) { super(title); setDefaultCloseOperation(EXIT_ON_CLOSE); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -