我需要将我的JFrame中的每个TextField设置为预先生成的数字数组中的相应数字,但我不知道如何。
这就是我需要的样子:
以下是我正在使用的ActionListener类:
public class RandListener implements ActionListener
{
private final JTextField[] tF;
public RandListener(JTextField[] tF)
{
this.tF = tF;
}
@Override
public void actionPerformed(ActionEvent e)
{
int [] rArray = new int[10];
Random rNum = new Random();
for(int k = 0; k < rArray.length; k++)
{
rArray[k] = rNum.nextInt(100);
}
if(e.getActionCommand().equals("bRand"))
{
for(int k = 0; k < tF.length; k++)
{
tF[k].setText(/*I need to set the text of my TextFields to the numbers in the array*/);
}
}
if(e.getActionCommand().equals("bMaxMin"))
{
//I need to find the maximum and minimum of the Array here
}
}
}
答案 0 :(得分:0)
阅读Java中的字符串如何工作。基本上,如果您想将数字转换为字符串:
tF[k].setText(/*I need to set the text of my TextFields to the numbers in the array*/);
变成:
tF[k].setText("" + rArray[k]);
我相信这是由Java自动完成的; number boxing将基本类型转换为其各自的包装器(int - &gt; Integer),然后在表示基元类型的Integer对象上调用toString()。
现在,要找到最小值和最大值,您将不得不考虑一下。这是公司将淘汰不良候选人的基本问题。自己弄清楚一次,你永远不会忘记它。想想你将如何做一个人;你把目前的最大/最小值与目前正在看的任何东西进行比较。