程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> java-要做咖啡機界面,我的代碼怎麼實現在主函數裡接收右面板

java-要做咖啡機界面,我的代碼怎麼實現在主函數裡接收右面板

編輯:編程綜合問答
要做咖啡機界面,我的代碼怎麼實現在主函數裡接收右面板

這是右面板:
public class RightPanel extends JPanel{
JPanel p1 = new JPanel();
JPanel p2 = new JPanel();
static JPanel p3 = new JPanel();
JButton b1,b2,b3,b4,b5,b6,b7;
static JPanel rp=null;
private RightPanel(){
this.setLayout(new FlowLayout());
p1.add(b1=new JButton("加水"));
p1.add(b2=new JButton("加粉"));
p1.add(b3=new JButton("加糖"));
p1.add(b4=new JButton("加杯"));
p2.add(b5=new JButton("投幣"));
p2.add(b6=new JButton("退幣"));
p2.add(b7=new JButton("取出"));
p3.add(p1);
p3.add(p2);
}
public static JPanel getInstance(){
rp=p3;
return rp;
}
}
這是主函數:
public class CoffeeATM {

public static void main(String[] args) {
    ATMFrame f = new ATMFrame();
    f.setVisible(true);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}

}
class ATMFrame extends JFrame{
JPanel rp ;
ATMFrame(){
this.setSize(300,600);
rp=RightPanel.getInstance();
Container c= this.getContentPane();
c.add(rp,BorderLayout.EAST);
}
}
新手,求解答,我的一直是空白頁,哪裡錯了?

最佳回答:


想寫單例模式,就好好看看寫的對錯

    public static JPanel getInstance(){
        rp=p3;
        return rp;
    }

私有的構造方法沒有調用阿,同志。
它能顯示嗎?

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved