gpt4 book ai didi

Java - 将文本文件添加到 ArrayList

转载 作者:太空宇宙 更新时间:2023-11-04 10:42:57 25 4
gpt4 key购买 nike

我有两个问题:

  1. 我有一个名为numbers2.txt 的文本文件,其中显示(1,2,3,4,5,6,7,8,9,10)。如何将这些数字存储到 ArrayList 中?我相当确定您必须使用 Double.parseDouble(string s) 方法,但我对此方法不熟悉。

  2. 这个程序的要点是从我的 ArrayList 中随机选择一个运算符,然后用两个随机数计算问题。为了if 语句我会用什么来代替运算符?

这是我的代码:

String operator;
double answer;
Random rand = new Random();
ArrayList<String> myArray = new ArrayList<String>();
ArrayList<Double> doubles = new ArrayList<Double>();

public void CreateArrayList() {
myArray.add("add");
myArray.add("subtract");
myArray.add("multiply");
myArray.add("divide");
myArray.add("remainder");
myArray.add("greater than");
myArray.add("less than");
myArray.add("max");
myArray.add("min");
myArray.add("power");
try {
FileReader inFile = new FileReader("data/numbers2.txt");
Scanner scanner = new Scanner(inFile);

scanner.close();
}
catch (Exception ex) {
ex.printStackTrace();}
}
{

}

public void showOperations() {

double x = Math.floor(Math.random()*10);
double y = Math.floor(Math.random()*10);
int z = rand.nextInt(myArray.size());
if(operator == "add") {
answer = (x+y);
System.out.println(x + " "+ z +" "+y+ "= "+ answer);
}
} }

这是我的主要方法:

public static void main(String[] args) {
// TODO Auto-generated method stub

Operator op = new Operator();
op.CreateArrayList();
op.showOperations();
}

任何帮助将不胜感激。谢谢。

最佳答案

打开扫描仪后直接将其关闭。这是毫无意义的举动。尝试实际使用来读取文件。另外,使用 finally阻止关闭扫描仪,以防出现异常:

Scanner scanner = null;
try {
FileReader inFile = new FileReader("data/numbers2.txt");
scanner = new Scanner(inFile);

while(scanner.hasNextDouble){
doubles.add(scanner.nextDouble());
}
} catch (Exception ex) {
ex.printStackTrace();}
} finally {
if(scanner != null) {
scanner.close();
}
}

对于运算符部分,您不能只获取随机索引,还必须从该索引中检索元素:

int z = rand.nextInt(myArray.size());
// Get the element
operator = myArray.get(z);

switch (operator) {
case "add": {
answer = (x + y);
System.out.println(x + " + " + y + " = " + answer);
}
case "subtract": {
answer = (x - y);
System.out.println(x + " - " + y + " = " + answer);
}
case "multiply": {
answer = (x * y);
System.out.println(x + " * " + y + " = " + answer);
}
// and so on...
default:
System.out.println(x + ", " + y);
}

关于Java - 将文本文件添加到 ArrayList<Double>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48733990/

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