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

📄 complexcalculatorapp.java

📁 一个用Java制作的实现“复数”各种操作的计算器。包括 加减乘除根模 自然对数 实幂指数 虚幂指数 正弦 余弦 正切。 主要是各种算法和类的设计。 可以供初学面向对象程序设计和Java的同学参考。
💻 JAVA
字号:
/* * ComplexCalculatorApp.java */package complexcalculator;import org.jdesktop.application.Application;import org.jdesktop.application.SingleFrameApplication;/** * The main class of the application. */public class ComplexCalculatorApp extends SingleFrameApplication {    /**     * At startup create and show the main frame of the application.     */    @Override    protected void startup() {        show(new ComplexCalculatorView());    }    /**     * This method is to initialize the specified window by injecting resources.     * Windows shown in our application come fully initialized from the GUI     * builder, so this additional configuration is not needed.     */    @Override    protected void configureWindow(java.awt.Window root) {    }    /**     * A convenient static getter for the application instance.     * @return the instance of ComplexCalculatorApp     */    public static ComplexCalculatorApp getApplication() {        return Application.getInstance(ComplexCalculatorApp.class);    }    /**     * Main method launching the application.     */    public static void main(String[] args) {        launch(ComplexCalculatorApp.class, args);    }}

⌨️ 快捷键说明

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