Comment detail

ウィンドウの表示 (Nested Flatten)
Simpleに。
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import javax.swing.JFrame;

class HelloGUI extends JFrame {
    public HelloGUI() {
        super("こんにちは、GUI!");
        this.setSize(400, 300);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }
    
    public static void main(String[] args) {
        new HelloGUI().setVisible(true);
    }
}

Index

Feed

Other

Link

Pathtraq

loading...