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

📄 secondwindowdemo.java

📁 此文件能系统的介绍Java初级知识
💻 JAVA
字号:
package swing.color;


import java.awt.*; //for the class Color used in an argument.

public class SecondWindowDemo
{
    /**
     Creates and displays two windows of the class SecondWindow.
    */
    public static void main(String[] args)
    {
        SecondWindow window1 = new SecondWindow( );
        window1.setVisible(true);

        SecondWindow window2 = new SecondWindow(Color.PINK);
        window2.setVisible(true);
    }
}

⌨️ 快捷键说明

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