首页>代码>JAVA.2核心技术.第1卷:基础知识(原书第7版) 源代码>/JAVA.2核心技术.第1卷:基础知识(原书第7版) 源代码/v1ch10/AppletApplication/CalculatorAppletApplication.java
/** @version 1.31 2004-05-07 @author Cay Horstmann */ /* The applet viewer reads the tags below if you call it with appletviewer CalculatorAppletApplication.java (!) No separate HTML file is required. <applet code="CalculatorAppletApplication.class" width="200" height="200"> </applet> */ import javax.swing.*; public class CalculatorAppletApplication extends CalculatorApplet // It's an applet. It's an application. It's BOTH! { public static void main(String[] args) { AppletFrame frame = new AppletFrame(new CalculatorApplet()); frame.setTitle("CalculatorAppletApplication"); frame.setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } public static final int DEFAULT_WIDTH = 200; public static final int DEFAULT_HEIGHT = 200; }
最近下载更多
最近浏览更多
linmou LV8
2023年3月19日
徐寿亮 LV1
2021年4月21日
高欢胜 LV1
2021年3月29日
2196316269 LV10
2021年2月24日
13043860zj LV16
2020年9月24日
xcj456 LV8
2020年9月12日
szy2503 LV2
2020年8月10日
16692039904 LV2
2020年6月25日
fighter919 LV1
2020年5月6日
hb2008 LV3
2020年4月25日