JAVA编程 JButton问题
button[i]=newJButton();//java.lang.NullPointerException,不知道为什么if(a[i]=='w')button[i]....
button[i]=new JButton(); //java.lang.NullPointerException,不知道为什么
if( a[i]=='w' ) button[i].setForeground(Color.WHITE);
else button[i].setForeground(Color.BLACK);
private static JButton button[]; //这是前面的定义
//下面是main中的语句
button=new JButton[13];
for(int i=0;i<13;i++){
if( a[i]=='w' ) button[i].setForeground(Color.WHITE); //java.lang.NullPointerException
else button[i].setForeground(Color.BLACK);
}
我改成这样,但是还是错误 展开
if( a[i]=='w' ) button[i].setForeground(Color.WHITE);
else button[i].setForeground(Color.BLACK);
private static JButton button[]; //这是前面的定义
//下面是main中的语句
button=new JButton[13];
for(int i=0;i<13;i++){
if( a[i]=='w' ) button[i].setForeground(Color.WHITE); //java.lang.NullPointerException
else button[i].setForeground(Color.BLACK);
}
我改成这样,但是还是错误 展开
2个回答
展开全部
button这个数组初始化了吗
把你定义button的语句改成
JButton button[] = new JButton[10];
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
private static JButton button[];
button=new JButton[13];
for(int i=0;i<13;i++){
button[i]=new JButton();
if( a[i]=='w' ) button[i].setForeground(Color.WHITE);
else button[i].setForeground(Color.BLACK);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询