gpt4 book ai didi

java - 有没有办法在java中使用图形按钮设置数组的值?

转载 作者:行者123 更新时间:2023-11-30 12:05:30 25 4
gpt4 key购买 nike

我正在尝试根据按下的按钮为数组设置值(数组为 [4])

我已经尝试使用 for 循环并使用 ActionListener,但它只返回第一个值的 4 倍,我想将它设置为 4 个不同的值

package stackOverflow;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JTextField;

public class mainStack extends JFrame implements ActionListener {

JButton jbr,jbv,jbb,jbo,jbn,jbj;
JTextField l11b;
String a;
mainStack(){

this.setLayout(null);
jbr = new JButton("Rouge");
jbr.setBounds(0,80,85,30);
add(jbr);

jbv = new JButton("Vert");
jbv.setBounds(125, 80, 85, 30);
add(jbv);

jbb = new JButton("Bleu");
jbb.setBounds(0, 120, 85, 30);
add(jbb);

jbj = new JButton("Jaune");
jbj.setBounds(125, 120, 85, 30);
add(jbj);

jbo = new JButton("Orange");
jbo.setBounds(0, 160, 85,30);
add(jbo);

jbn = new JButton("Noir");
jbn.setBounds(125,160, 85,30);
add(jbn);

jbr.addActionListener(this);
jbv.addActionListener(this);
jbb.addActionListener(this);
jbj.addActionListener(this);
jbo.addActionListener(this);
jbn.addActionListener(this);

setLayout(null);
setSize(800,800);
setVisible(true);
}

public void actionPerformed(ActionEvent e) {

int i,b = 0;
int tabAnswer[]= new int [4];
for(i=0;i<tabAnswer.length;i++) {
if(e.getSource().equals(jbr)) {
a ="R";
}
else if(e.getSource().equals(jbv)) {
a = "V";
}
else if(e.getSource().equals(jbj)) {
a = "J";
}
else if(e.getSource().equals(jbb)) {
a = "B";
}
else if(e.getSource().equals(jbo)) {
a = "O";
}
else if(e.getSource().equals(jbn)) {
a = "N";
}
else { }
if(a.contentEquals("R")) {
b=0;
}
if(a.contentEquals("V")) {
b=1;
}
if(a.contentEquals("J")) {
b=2;
}
if(a.contentEquals("B")){
b=3;
}
if(a.contentEquals("O")) {
b=4;
}
if(a.contentEquals("N")) {
b=5;
}
tabAnswer[i]=b;

}
for(i=0;i<tabAnswer.length;i++) {

System.out.println(tabAnswer[i]);
}

}

public static void main(String[] args) {
mainStack t= new mainStack();

}
}

我想让它等我按下按钮 4 次,以显示这个数组的第 4 个值,但它只显示一个

编辑:如您所见,我的数组只取六个可能值中的一个。我希望能够使用按钮将其设置为 {0,1,2,3}。我希望现在好多了。

最佳答案

您应该将 tabAnswerindex 提取到字段中。每次按下按钮时,在数组中设置当前 index 并递增 index。如果数组已满 (index >= tabAnswer.length) 打印数组或做任何您想用它做的事。可选择重置索引以防止 IndexOutOfBoundException

这是一个例子:

private int index = 0;
private int[] tabAnswer = new int[4];

public void actionPerformed(ActionEvent e) {
if (e.getSource().equals(jbr)) {
tabAnswer[index] = 0;
} else if (e.getSource().equals(jbv)) {
tabAnswer[index] = 1;
} else if (e.getSource().equals(jbj)) {
tabAnswer[index] = 2;
} else if (e.getSource().equals(jbb)) {
tabAnswer[index] = 3;
} else if (e.getSource().equals(jbo)) {
tabAnswer[index] = 4;
} else if (e.getSource().equals(jbn)) {
tabAnswer[index] = 5;
}
index++;
if (index >= tabAnswer.length) {
System.out.println(Arrays.toString(tabAnswer));
index = 0;
}
}

关于java - 有没有办法在java中使用图形按钮设置数组的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56226930/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com