public class Game extends JFrame implements ActionListener{
Drawing object=new Drawing();
Timer t=new Timer(1,this);
int score;
ArrayList<Enemy> bombs=new ArrayList<Enemy>();
public Game()
{
t.start();
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(700,600);
setVisible(true);
add(object);
add(new JLabel("Hello"));
validate();
createBombs();
}
爲什麼我無法同時添加JLabel和對象。只有其中一個出現。 (JLabel)。添加多個對象
你得到的錯誤是什麼?我們可以看到添加功能嗎? –
什麼樣的對象是繪圖?你是否能夠在任何其他控件上顯示它?我最好的猜測是繪製得到添加沒有任何問題,但它實際上並沒有繪製的東西,所以它似乎沒有被添加。 –
你知道JFrame的默認佈局管理器是什麼嗎? – FredK