Чтение файла и запись в окно cmd с использованием мутаторов / аксессоров - PullRequest
0 голосов
/ 28 апреля 2020

Я работаю над проектом для школы и, кажется, закопался в кроличью нору. Мне нужно прочитать файл, состоящий только из положительных и отрицательных чисел, из файла и отобразить их в командном окне вместе с датой. Я смог получить конечный результат, но не могу перечислить предельные результаты. Заранее спасибо!

    class Account{

    private int id = 0; //private int data field named id for the account (default 0).
    private double balance = 0.0; //private double data field named balance for the account (default 0)
    private static double annualInterestRate = 0.0; //private double data field named annualInterestRate that stores the current interest rate (default 0). Assume all accounts have the same interest rate.

    private java.util.Date dateCreated; //private Date data field named dateCreated that stores the date when the account was created.

        //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
        public Account() { //no-arg constructor that creates a default account.

        dateCreated = new java.util.Date();
    }
    //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    public Account(int id, double balance) { //constructor that creates an account with the specified id and initial balance.
        this();
        this.id = id;
        this.balance = balance;
    }
    //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    public int getId() {//accessor and mutator methods for id, balance, and annualInterestRate.

        return this.id;
    }
    //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    public double getBalance() {//accessor and mutator methods for id, balance, and annualInterestRate.
        return this.balance;
    }
    //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    public double getAnnualInterestRate() {//accessor and mutator methods for id, balance, and annualInterestRate.
        return annualInterestRate;
    }
    //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    public String getDateCreated() {//accessor method for dateCreated
        return this.dateCreated.toString();
    }
    //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    public void setId(int id) { //mutator for id
        this.id = id;
    }
    //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    public void setBalance(double balance) { //mutator for balance
        this.balance = balance;
    }
    //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    public void setAnnualInterestRate(double annualInterestRate) { //mutator annual interest rate
        this.annualInterestRate = annualInterestRate;
    }
    //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    public double getMonthlyInterestRate() { //method named getMonthlyInterestRate() that returns the monthly interest rate.
        return (annualInterestRate / 100) / 12 ;
    }
    //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    public double getMonthlyInterest() { //method named getMonthlyInterest() that returns the monthly interest.
        return balance * getMonthlyInterestRate();
    }
   //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    public void withdraw(double amount) { //method named withdraw that withdraws a specified amount from the account.
        this.balance -= amount;
    }
    //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    public void deposit(double amount) { //method named deposit that deposits a specified amount to the account.

        this.balance += amount;
    }
     //=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
}//end class account

Я почти уверен, что класс в порядке. Это тот метод с основным методом, с которым мне больше всего нужна помощь или руководство.

import java.util.Scanner;
import java.io.*;

public class AccountHomework{
    public static void main(String[] args)throws IOException{

    File fn = new File("transactions.txt");
    Scanner dataIn = new Scanner(fn);

        Account account = new Account(1122, 20000);

        double[] transactions = new double[10];
        account.setAnnualInterestRate(4.5);
        account.withdraw(2500.0);
        account.deposit(3000.0);

printMethod(account);
}

public static void printMethod(Account acct){
        System.out.printf(" %8s    %17s    %13s","Balance","Monthly Interest","Date Created\n");
        System.out.printf(" $%6.2f        $%6.2f            %s\n",acct.getBalance(),acct.getMonthlyInterest(),acct.getDateCreated());

    }

public static void fillTransactions(Scanner dataIn, Stock[] stocks){

     double transactions;

 for(int indx = 0; indx<stocks.length;indx++){
     transactions = dataIn.nextDouble();
     dataIn.nextLine();  // read the extra carriage return
     if (transactions < 0)
        dataIn.withdraw();
        else
        dataIn.deposit();

     account[indx] = new Account();
     account[indx].populateStockData(transactions);

     }//end for
}//end fillStockArray
}

1 Ответ

0 голосов
/ 28 апреля 2020

Я заметил 2 вещи: 1. сканер dataIn не используется для чтения данных, я вижу, у вас есть метод fillTransaction, но он не вызывается из main 2. В рамках fillTransactions вы используете методыdraw () и deposit ( ) на сканере, когда методы фактически определены в классе Account

...