簡體   English   中英

不同類的調用方法 Java的

[英]Calling methods from different classes | Java

我正在為一個應用程序編寫代碼,該應用程序可以跟蹤學生在校園食堂購買的食物。 有兩個類-Student ,其中包含重載的構造函數和適當的getter和setter方法; MealCard ,其中包含一個類變量來跟蹤已發行的飯卡數量,適當的getter和setter方法,purchaseItem()方法,purchasePoints()方法和覆蓋的toString()方法。 還有一個Tester類。

在我的MealCard類中,編寫了方法,但是在Tester中,當我調用它們時,它們無法正常工作。 我想從用戶那里獲得itemValue,但是我該如何在MealCard類中做到這一點?

PurchasePoints方法也是如此,如何從MealCard類的用戶那里獲取topUpValue

到目前為止的代碼是:

public class Student {

// Instance Variables
private String name;
private int age;
private String address;

// Default Constructor
public Student() {
    this("Not Given", 0, "Not Given");
}

// Parameterized constructor that takes in values
public Student(String name, int age, String address) {
    this.name = name;
    this.age = age;
    this.address = address;
}

// Getters and Setters
public String getName() {
    return name;
}
public void setName(String name) {
    this.name = name;
}

public int getAge() {
    return age;
}
public void setAge(int age) {
    this.age = age;
}

public String getAddress(){
    return address;
}
public void setAddress(String address) {
    this.address = address;
}

// toString() to be overriden
@Override
public String toString() {
    return "Name: " + this.name + "\n" + "Age: " + this.age + "\n" + "Address: " + this.address;
}
}

`

public class MealCard extends Student {

static int numberOfMealCards;
private final static int DEFAULT_BALANCE = 1000;
private int itemValue;
private int topUpValue;
public int newBalance;

// Getters and Setters
public int getItemValue() {
    return itemValue;
}
public void setItemValue(int itemValue) {
    this.itemValue = itemValue;
}

public int getTopUpValue() {
    return topUpValue;
}
public void setTopUpValue(int topUpValue) {
    this.topUpValue = topUpValue;
}

// purchaseItem method for when students buy food
public int purchaseItem() {
    newBalance = DEFAULT_BALANCE - itemValue;
    return newBalance;
}

// purchasePoints method for students topping up their meal card balance
public int purchasePoints() {
    newBalance = DEFAULT_BALANCE + topUpValue;
    return newBalance;
}

// Overriden toString method
@Override
public String toString() {
    return super.toString() + "Meal Card Balance: " + this.newBalance + "\n" + "Number of Meal Cards: " + numberOfMealCards;
}

}

`

import java.util.Scanner;

public class TestMealCard {

public static void main(String[] args) {

    // Create instances of MealCard class
    MealCard student1 = new MealCard();
    MealCard student2 = new MealCard();

    Scanner keyboard = new Scanner(System.in);

    System.out.println("Name: ");
    student1.setName(keyboard.nextLine()); 
    System.out.println("Age: ");
    student1.setAge(keyboard.nextInt()); 
    System.out.println("Address: ");
    student1.setAddress(keyboard.nextLine()); 
    System.out.println("Meal Card Balace: ");
    student1.newBalance = keyboard.nextInt();
    System.out.println("Number of Meal Cards Issued: ");
    student1.numberOfMealCards = keyboard.nextInt();

    System.out.println("Name: ");
    student2.setName(keyboard.nextLine()); 
    System.out.println("Age: ");
    student2.setAge(keyboard.nextInt()); 
    System.out.println("Address: ");
    student2.setAddress(keyboard.nextLine()); 
    System.out.println("Meal Card Balace: ");
    student2.newBalance = keyboard.nextInt();
    System.out.println("Number of Meal Cards Issued: ");
    student2.numberOfMealCards = keyboard.nextInt();

    // Call purchaseItem
    student1.purchaseItem();


    // Call purchasePoints
    student2.purchasePoints();

    // Call tString to output information to user
}
}

為了從用戶設置itemValue,您需要使用此setItemValue()方法從用戶那里獲取輸入。

防爆。

System.out.print("Please enter the item value:   ");
student1.setItemValue(keyboard.nextInt());

要么

int itemVal = 0;
System.out.print("Please enter the item value:   ");
itemVal = keyboard.nextInt();
student1.setItemValue(itemVal);

至於其他方法調用,只需調用setUp的toUpValue。

防爆。

System.out.print("Please enter the item value:   ");
student1.setTopUpValue(keyboard.nextInt());

要么

int toUpVal = 0;
System.out.print("Please enter the item value:   ");
itemVal = keyboard.nextInt();
student1.setTopUpValue(topUpVal);

希望有幫助=)。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM