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

📄 calculator.java

📁 A calculator source code written in java
💻 JAVA
字号:
/** * The main class of a simple calculator. Create one of these and you'll * get the calculator on screen. *  * @author David J. Barnes and Michael Kolling * @version 31 July 2000 */public class Calculator  {    private CalcEngine engine;    private UserInterface gui;    /**     * Create a new calculator and show it.     */    public Calculator()    {        engine = new CalcEngine();        gui = new UserInterface(engine);    }    /**     * In case the window was closed, show it again.     */    public void show()    {        gui.setVisible(true);    }        public static void main(String [] args)    {        new Calculator().show();    }}

⌨️ 快捷键说明

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