• JavaFX学习:Application的生命周期


    代码示例

    public class LifeCycle extends Application {
    
        public static void main(String[] args) {
            System.out.println("main() = " + Thread.currentThread().getName());
            launch(args); // 其实是启动了一个UI线程
        }
    
        @Override
        public void init() throws Exception {
            super.init();
            System.out.println("调用了init方法. "  + Thread.currentThread().getName());
        }
    
        @Override
        public void start(Stage primaryStage) throws Exception {
            System.out.println("调用了start方法. "  + Thread.currentThread().getName());
            primaryStage.setTitle("生命周期");
            primaryStage.show();
        }
    
        @Override
        public void stop() throws Exception {
            super.stop();
            System.out.println("调用了stop方法. "  + Thread.currentThread().getName());
        }
    }
    
  • 相关阅读:
    列表、元组、字符串的相互转化
    python中的常用BIF
    python中的类型
    python内置模块
    打印字体颜色整理
    xml操作
    内置函数
    迭代器
    装饰器
    函数
  • 原文地址:https://www.cnblogs.com/wbyixx/p/14207663.html
Copyright © 2020-2023  润新知