Advertisement
sergAccount

Untitled

Oct 11th, 2020
1,857
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.98 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package app54;
  7.  
  8. import javax.swing.JFrame;
  9.  
  10. public class Okno extends JFrame{
  11.     // конструктор класса без параметров
  12.     // конструктор класса для настройки главного окна программы
  13.     public Okno(){
  14.         // задаем (указываем) заголовок окна
  15.         setTitle("HELLO JAVA!!!");
  16.         // задаем расположение и размеры главного окна
  17.         setBounds(10, 10, 800, 600);
  18.         // метод для коорректного завершения программы
  19.         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  20.         // метод для показа окна на экране
  21.         setVisible(true);        
  22.     }    
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement