“Jak zrobić okno w Javie” Kod odpowiedzi

Java Utwórz okno

//THIS IS A FIX OF THE ONE BY FRANCY FROG
//THEY FIXED THEIRS
import javax.swing.JFrame;

public class example {
  public static void main(String[] args){
    JFrame frame = new JFrame();
    frame.setSize(100,100);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setTitle("Example Frame");
    frame.setVisible(true);
  }
}
Rabid Goose

Java Utwórz Jframe

import javax.swing.JFrame;

public class example {
  public static void main(String[] args){
    JFrame frame = new JFrame();
    frame.setSize(100,100);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOES);
    frame.setTitle("Example Frame");
    frame.setVisible(true);
  }
}
Fancy Frog

Jak zrobić okno w Javie

//It is easy
//Don't forget to mention package or it will cause error
import javax.swing.*;

public class coder83 {
  public static void main(String[] args){
    JFrame firstFrame = new JFrame();
//x and y are your wish
    firstFrame.setsize(y,x);
    firstFrame.setTitle("Coder83");
//It is important or else your window won't clode
    firstFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 
    firstFrame.setVisible(true);
  }}
    
VScoder

Odpowiedzi podobne do “Jak zrobić okno w Javie”

Pytania podobne do “Jak zrobić okno w Javie”

Więcej pokrewnych odpowiedzi na “Jak zrobić okno w Javie” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu