gpt4 book ai didi

Java - 使用 Scanner 构建对象数组

转载 作者:行者123 更新时间:2023-12-02 02:23:34 25 4
gpt4 key购买 nike

我正在尝试使用用户的输入构建对象数组。我的代码运行没有错误,但输出 Pane 是空白的,并显示“构建成功”,我无法弄清楚我做错了什么,因为我确信所有代码都是正确的。任何指示将不胜感激。预先感谢您

package sanctuary;

import java.util.Scanner;

/**
*
* @author dell
*/
public class Sanctuary {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {

class Animal
{
private String species;
private String animalname;
private String breed;
private double weight;
private String gender;
private int age;
private String location;
private String vet;
private double vaccine;
private double medicine;
private double food;
private double muandv;

void GetAnimalData() // Defining GetAnimalData()
{

Scanner sc = new Scanner(System.in);

System.out.print("\n\tEnter Animal Species : ");
species = (sc.nextLine());

System.out.print("\n\tEnter Animal Name : ");
animalname = sc.nextLine();

System.out.print("\n\tEnter Animal Breed : ");
breed = (sc.nextLine());

System.out.print("\n\tEnter Animal Weight : ");
weight = (sc.nextDouble());

System.out.print("\n\tEnter Animal Gender : ");
gender = (sc.nextLine());

System.out.print("\n\tEnter Animal Age : ");
age = Integer.parseInt(sc.nextLine());

System.out.print("\n\tEnter Animal Location : ");
location = (sc.nextLine());

System.out.print("\n\tEnter Vet Name: ");
vet = (sc.nextLine());

System.out.print("\n\tEnter Vaccine Cost : ");
vaccine = (sc.nextDouble());

System.out.print("\n\tEnter Medicine Cost : ");
medicine = sc.nextDouble();

System.out.print("\n\tEnter Food Cost : ");
food = (sc.nextDouble());

System.out.print("\n\tEnter Maintenance, Utility and Vet Cost : ");
muandv = (sc.nextDouble());

}

void PrintAnimalData() // Defining PrintAnimalData()
{
System.out.print("\n\t" + species + "\t" +animalname + "\t" +breed + "\t" +weight + "\t" +gender + "\t" +age + "\t" +location + "\t" +vet + "\t" +vaccine + "\t" +medicine + "\t" +food + "\t" +muandv);
}

public void main(String args[])
{

Animal[] AnimalList = new Animal[100];
int i = 0;

for(i=0;i<AnimalList.length;i++)
AnimalList[i] = new Animal(); // Allocating memory to each object

for(i=0;i<AnimalList.length;i++)
{
System.out.print("\nEnter details of "+ (i+1) +" Animal\n");
AnimalList[i].GetAnimalData();
}

System.out.print("\nAnimal Details\n");
for(i=0;i<AnimalList.length;i++)
AnimalList[i].PrintAnimalData();

}
}
}
}

最佳答案

您的 main 方法不执行任何操作:它只包含声明。

关于Java - 使用 Scanner 构建对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48112604/

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