#acl All: == クラスを利用する == {{{ import javax.swing.*; import java.awt.*; public class Game15 { public static void main(String[] args) { JFrame f; Container cp; Game14 p; f = new JFrame(); f.setTitle("15game"); f.setVisible(true); f.setSize(500, 500); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); cp = f.getContentPane(); p = new Game14(); p.haba = 80; p.yoko = 6; p.tate = 5; p.fname = "test.jpg"; p.shokika(); cp.add(p); } } }}}