ウインドウの表示
- 行番号表示/非表示切替
1 import javax.swing.*; 2 3 public class Sample2 4 { 5 public static void main(String[] args) 6 { 7 JFrame f, g; 8 9 f = new JFrame(); 10 f.setVisible(true); 11 f.setTitle("- f -"); 12 f.setSize(200, 300); 13 14 g = new JFrame(); 15 g.setVisible(true); 16 g.setTitle("- g -"); 17 g.setSize(300, 100); 18 } 19 }