October 2017
Beginner
318 pages
7h 26m
English
To start off on this track, we're going to write a program that will open up a new GUI window. The steps are as follows:
package GUI;
import javax.swing.*;
public class GUI { public static void main(String[] args) {
JFrame frame = new JFrame("Hello World GUI");
}
}
Read now
Unlock full access