快速提问,
我目前正在开发一个程序,我试图在GUI中输入一个数字并让程序搜索一个数组来查找该数字然后输出该数组中的下一个数字。我能够完成此操作,但for循环仅适用于第一组数字。我可以输入7623,它填充2000 .00,所以我知道我走在正确的轨道上。我的for循环可能有问题,但一直在摸不着头脑。感谢您所有的帮助。
private double[][] arrayValues = {
{7623, 2000.00},
{7623, 1200.00},
{8729, 1000.00},
{8729, 1700.00},
{7321, 4500.00},
{3242, 4612.00},
{3242, 100.00},
{9823, 234.00},
{9823, 2345.00},
{2341, 12373.12},
{2341, 5421.12},
{8321, 2314.00},
{8321, 56233.00}
};
private void requestBalanceActionPerformed(java.awt.event.ActionEvent evt) {
actnum = Double.parseDouble(accountNumber.getText());
int match = 0;
for (int i = 0; i < arrayValues.length; i++) {
double accountNo = arrayValues[i][0];
initialBalance.setText(", ");
if (accountNo == actnum) {
balance = arrayValues[i][1];
accountIndex = i;
initialBalance.setText(Double.toString(balance));
initialBalance.setForeground(Color.BLACK);
match = 1;
}
if (match != 1) {
initialBalance.setText(Double.toString(0));
initialBalance.setText("Acct # does not exist. Please try again.");
initialBalance.setForeground(Color.RED);
/////////////////////新代码/////////////
所以,这个代码实例现在允许我在数组中搜索不同的数字,但是我必须取出initialBalance.setText(&#34;&#34;);让它工作。当我搜索7623时,它现在输出1200.00而不是2000.00,它为每个#执行此操作,跳过该数字的第一个实例。我相信它与我删除的.setText有关吗?
private void requestBalanceActionPerformed(java.awt.event.ActionEvent evt) {
actnum = Double.parseDouble(accountNumber.getText());
int match = 0;
for (int i = 0; i < arrayValues.length; i++) {
double accountNo = arrayValues[i][0];
if (accountNo == actnum) {
balance = arrayValues[i][1];
accountIndex = i;
initialBalance.setText(Double.toString(balance));
initialBalance.setForeground(Color.BLACK);
match = 1;
}
}
if (match != 1) {
initialBalance.setText(Double.toString(0));
initialBalance.setText("Acct # does not exist. Please try again.");
initialBalance.setForeground(Color.RED);
}
答案 0 :(得分:1)
程序正在通过if(match != 1)
循环评估每次迭代的for
条件。你想要做的是先遍历整个数组,然后在最后测试你的不等条件。
将if(match != 1)
语句移到for循环之外。
编辑:回应关于将双打与容差水平进行比较的其他答案。
答案 1 :(得分:0)
在双打中使用==通常是不好的做法。您想要在容差范围内检查贴近度。
答案 2 :(得分:0)
向后循环你的数组:
public static double findNextValue(double[][] arr, int value) {
for (int i = arr.length - 1; i >= 0; i--)
if (Double.compare(arr[i][0], value) == 0)
return arr[i][1];
return Double.NaN;
}
答案 3 :(得分:0)
你是否必须使用双[] []似乎你可以使用一个地图然后没有&#34;搜索&#34;需要做的值.get(keyValue)//返回关联的double。
答案 4 :(得分:0)
添加声明
break;
后
match = 1;