質問内容
質問を評価する
(0ポイント)
|
以下のABC3つは いづれもJbuilderでのコンパイル+実行は正常に行くます Aは既に作られていたものです。B,CはJNPLファイルを作る過程で助言を元に作成したものです が どう違いがあるか 最も正しいものが 分からないもので助言をお願いします A: public class AMyPen222x222Box64 extends Applet { 略 public static void main( String[] args ) { AMyPen222x222Box64 example = new AMyPen222x222Box64(); MainFrame frame = new MainFrame( example, 500, 500 ); } }
B: public class AMyPen222x222Box64 extends Applet { 略 public static void main( String[] args ) { AMyPen222x222Box64 example = new AMyPen222x222Box64(); // for making JNLP to wrap applet and launch it. new com.sun.j3d.utils.applet.MainFrame( new AMyPen222x222Box64(), 500, 500); } }
C: public class AMyPen222x222Box64 extends Applet { 略 public static void main( String[] args ) { // for making JNLP to wrap applet and launch it. new com.sun.j3d.utils.applet.MainFrame( new AMyPen222x222Box64(), 500, 500); } }
|