welcome: please sign in
location: "ウインドウの表示"の差分
2と3のリビジョン間の差分
2009-11-27 00:51:52時点のリビジョン2
サイズ: 74
編集者: masahiko
コメント:
2009-11-27 00:52:57時点のリビジョン3
サイズ: 267
編集者: masahiko
コメント:
削除された箇所はこのように表示されます。 追加された箇所はこのように表示されます。
行 3: 行 3:
 {{{#!java
 import javax.swing.*;

 public class Sample
 {
  public static void main(String[] args)
  {
   JFrame f;
   
   f = new JFrame();
   f.setVisible(true);
  }
 }
 }}}

ウインドウの表示

  •    1  import javax.swing.*;
       2 
       3  public class Sample
       4  {
       5         public static void main(String[] args)
       6         {
       7                 JFrame f;
       8                 
       9                 f = new JFrame();
      10                 f.setVisible(true);
      11         }
      12  }
    
  • swing01.png

ウインドウの表示 (最終更新日時 2011-12-13 02:59:08 更新者 masahiko)