为了账号安全,请及时绑定邮箱和手机立即绑定

无法在 Java 中将对象数组绘制到面板上

无法在 Java 中将对象数组绘制到面板上

智慧大石 2021-11-03 16:53:46
该程序很简单。我正在尝试在 Java 框架中的面板上打印 3-10 个随机的面孔。问题是面部不会打印在面板上。我对此很陌生,所以我不确定我搞砸了什么,并且我一直试图找到解决我的问题的方法有一段时间了。有什么帮助吗?
查看完整描述

1 回答

?
天涯尽头无女友

TA贡献1831条经验 获得超9个赞

class FaceFrame extends JFrame {


    private FacePanel myFacePanel;


    public FaceFrame(ArrayList<Face> faceListIn, int width, int height) {

        setBounds(100, 100, 900, 600);

        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        FacePanel myFacepanel = new FacePanel(faceListIn);

    }


}

添加myFacepanel到JFrame可能是一个好的开始......


public FaceFrame(ArrayList<Face> faceListIn, int width, int height) {

    setBounds(100, 100, 900, 600);

    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    FacePanel myFacepanel = new FacePanel(faceListIn);

    // This might be a good place to start

    add(myFacepanel);

}

……下一个问题……

FacePanel(ArrayList<Face> FaceListIn){

    setFaceList(FaceList);

}

您分配FaceList给自己(您没有使用FaceListIn)。


我会摆脱static并更新代码......


class FacePanel extends JPanel {


    private ArrayList<Face> FaceList;


    public void setFaceList(ArrayList<Face> FaceListIn) {

        FaceList = FaceListIn;

    }


    //draw panel

    FacePanel() {

        super();

    }


    FacePanel(ArrayList<Face> FaceListIn) {

        setFaceList(FaceListIn);

    }


    public void paintComponent(Graphics g) {

        super.paintComponent(g);

        for (Face oD : FaceList) {

            oD.paintComponent(g);

        }

    }

}


查看完整回答
反对 回复 2021-11-03
  • 1 回答
  • 0 关注
  • 150 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信