如何从单独的类中获取用户输入 - java

我的目标是获取项目的金额和该项目的说明。我想获得10个输入及其值。我不知道如何在不要求一个然后另一个的情况下存储他们的信息。我希望能够要求用户输入项目,然后输入价格,然后存储每个值。

我试图创建一个要输入的对象数组,然后被建议使用我理解但不知道在这种情况下如何实现的数组列表。

import java.util.ArrayList;

public class Invoice {
    private ArrayList<Item> listOfItems;

    public Invoice() {
        listOfItems = new ArrayList<Item>();
    }


    public void addItem(Item item) {
        listOfItems.add(item);
    }

    public double calculateNetItemCost() {
        double netCost = 0;
        for(Item currentItem : listOfItems) {
        netCost += currentItem.getCost();
        }

        return netCost;
    }

    public double calculateTax(double taxRateAsADecimal) {
        return calculateNetItemCost() * taxRateAsADecimal;
    }

    public double calculateGST() {
        double GST = calculateNetItemCost() * 0.05;
        return GST;
    }

    public double calculatePST() {
        double PST = calculateNetItemCost() * 0.07;
        return PST;
    }

    public double calculateTotalCost() {
        double total = calculateGST() + calculatePST() + calculateNetItemCost();
        return total;
    }

}

public class Item {
    private double amount;
    private String description;

    public Item(String description, double amount) {
        this.amount = amount;
        this.description = description;
    }

    public String toString() {
        return description + ", $" + String.format("%.2f", amount);
    }

    public double getCost() {
        return amount;
    }

    public void setAmount(double amount) {
        this.amount = amount;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

}
import java.util.Scanner;

import java.util.ArrayList;
public class CustomerBuild {

    public static void main(String[] args) {
        ArrayList<String> description = new ArrayList<String>();
        ArrayList<Double> amount = new ArrayList<Double>();

        Scanner input = new Scanner(System.in);
        String userInput;
        Item testItem = new Item("Apples", 4.00);

        System.out.println(testItem);

        Invoice testInvoice = new Invoice();
        testInvoice.addItem(testItem);


        double subTotal = testInvoice.calculateNetItemCost();
        System.out.println(subTotal);

        double GST = testInvoice.calculateGST();
        System.out.println("GST: " + GST);

        double PST = testInvoice.calculatePST();

        System.out.println("PST: " + PST);

        System.out.println("Total cost: " + testInvoice.calculateTotalCost());
    }

}

参考方案

该代码段是您要寻找的。要求用户输入,然后使用值初始化对象

    Scanner input = new Scanner(System.in);
    System.out.println("Please enter description(e.g.apple,banana,orange):");
    String description =input.nextLine();
    System.out.println("Please enter Price(e.g.4.0,5.99):");
    Double price = scanner.nextDouble();
    Item testItem = new Item(description, price);

对于循环:

for(int i =1;i<10;i++) {
        System.out.println("Please enter description(e.g.apple,banana,orange):");
        String description =input.nextLine();
        System.out.println("Please enter Price(e.g.4.0,5.99):");
        Double price = scanner.nextDouble();
testInvoice.addItem(new Item(description, price));
}

Java Double与BigDecimal - java

我正在查看一些使用双精度变量来存储(360-359.9998779296875)结果为0.0001220703125的代码。 double变量将其存储为-1.220703125E-4。当我使用BigDecimal时,其存储为0.0001220703125。为什么将它双重存储为-1.220703125E-4? 参考方案 我不会在这里提及精度问题,而只会提及数字…

java:继承 - java

有哪些替代继承的方法? java大神给出的解决方案 有效的Java:偏重于继承而不是继承。 (这实际上也来自“四人帮”)。他提出的理由是,如果扩展类未明确设计为继承,则继承会引起很多不正常的副作用。例如,对super.someMethod()的任何调用都可以引导您通过未知代码的意外路径。取而代之的是,持有对本来应该扩展的类的引用,然后委托给它。这是与Eric…

Java:BigInteger,如何通过OutputStream编写它 - java

我想将BigInteger写入文件。做这个的最好方式是什么。当然,我想从输入流中读取(使用程序,而不是人工)。我必须使用ObjectOutputStream还是有更好的方法?目的是使用尽可能少的字节。谢谢马丁 参考方案 Java序列化(ObjectOutputStream / ObjectInputStream)是将对象序列化为八位字节序列的一种通用方法。但…

Java-如何将此字符串转换为日期? - java

我从服务器收到此消息,我不明白T和Z的含义,2012-08-24T09:59:59Z将此字符串转换为Date对象的正确SimpleDateFormat模式是什么? java大神给出的解决方案 这是ISO 8601标准。您可以使用SimpleDateFormat simpleFormat = new SimpleDateFormat("yyyy-MM…

Java:从类中查找项目名称 - java

仅通过类的实例,如何使用Java反射或类似方法查找项目名称?如果不是,项目名称(我真正想要的是)可以找到程序包名称吗? 参考方案 项目只是IDE使用的简单组织工具,因此项目名称不是类或JVM中包含的信息。要获取软件包,请使用Class#getPackage()。然后,可以调用Package#getName()将包作为您在代码的包声明中看到的String来获取…