※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
import java.awt.*; public class Test4 extends Frame { public Test4 () { super (); setTitle("Hello"); setSize (300,150); Label mylabel; mylabel = new Label ("Hello World."); this.add ("Center",mylabel); Button mybutton; mybutton = new Button ("OK"); this.add ("South",mybutton); } public static void main (String args []) { new Test4 ().setVisible(true); } }
次へ >> |