- import javax.swing.*;
- public class AAA {
- public static void main(String[] args)
- {
- JFrame x=new JFrame("1111111");
- JFrame y=new JFrame("2222222");
- JFrame z=new JFrame("3333333");
- x.setBounds(100, 100,200, 100);
- x.setVisible(true);
- x.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- x.setResizable(false);
- y.setBounds(300, 100,200, 100);
- y.setVisible(true);
- y.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- y.setResizable(false);
- z.setBounds(500, 100,200, 100);
- z.setVisible(true);
- z.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- z.setResizable(false);
- }
- }
複製代碼 |