Ventanas
package Capitulo_1;
@SuppressWarnings("serial")
public class _9_Ventanas_ extends javax.swing.JFrame {
public _9_Ventanas_() {
setSize(500,300);
setTitle("ventana");
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
setVisible(true);
}
public static void main(String[] args) {
new _9_Ventanas_().setLocation(0, 0);
new _9_Ventanas_().setLocation(500, 0);
new _9_Ventanas_().setLocation(0, 500);
new _9_Ventanas_().setLocation(500, 500);
}
}
