JAVA编程 JButton问题
答案:2 悬赏:30 手机版
解决时间 2021-03-22 04:21
- 提问者网友:送舟行
- 2021-03-21 14:25
JAVA编程 JButton问题
最佳答案
- 五星知识达人网友:北方的南先生
- 2021-03-21 15:50
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);
}
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);
}
全部回答
- 1楼网友:胯下狙击手
- 2021-03-21 17:12
button这个数组初始化了吗
把你定义button的语句改成
JButton button[] = new JButton[10];我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯