当前位置: 代码迷 >> J2SE >> 关于空指针错误·求解决·
  详细解决方案

关于空指针错误·求解决·

热度:93   发布时间:2016-04-23 21:17:47.0
关于空指针异常··求解决·在线等!
本帖最后由 q358543781 于 2013-12-22 20:27:12 编辑
public UI() {
setTitle("马周游问题");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(0, 0, 490, 410);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
contentPane.setBackground(Color.WHITE);
contentPane.setBounds(0, 0, 490, 410);
width = contentPane.getWidth();
height = contentPane.getHeight();
dLine.draw(contentPane,width,height);//为什么这句会抛出空指针异常啊·经检验和第一个参数有关,为什么?
}




------解决方案--------------------
dLine.draw
这个?dLine初始化了吗
------解决方案--------------------
dLine没有实例化吧??
  相关解决方案