- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
头等舱:
public class Pets
{
// Instance variables
private String name;
private int age; //in years
private double weight; //in pounds
// Default values for instance variables
private static final String DEFAULT_NAME = "No name yet." ;
private static final int DEFAULT_AGE = -1 ;
private static final double DEFAULT_WEIGHT = -1.0 ;
/***************************************************
* Constructors to create objects of type Pet
***************************************************/
// no-argument constructor
public Pets()
{
this(DEFAULT_NAME, DEFAULT_AGE, DEFAULT_WEIGHT) ;
}
// only name provided
public Pets(String initialName)
{
this(initialName, DEFAULT_AGE, DEFAULT_WEIGHT) ;
}
// only age provided
public Pets(int initialAge)
{
this(DEFAULT_NAME, initialAge, DEFAULT_WEIGHT) ;
}
// only weight provided
public Pets(double initialWeight)
{
this(DEFAULT_NAME, DEFAULT_AGE, initialWeight) ;
}
// full constructor (all three instance variables provided)
public Pets(String initialName, int initialAge, double initialWeight)
{
setName(initialName) ;
setAge(initialAge) ;
setWeight(initialWeight) ;
}
/****************************************************************
* Mutators and setters to update the Pet. Setters for age and
* weight validate reasonable weights are specified
****************************************************************/
// Mutator that sets all instance variables
public void set(String newName, int newAge, double newWeight)
{
setName(newName) ;
setAge(newAge) ;
setWeight(newWeight) ;
}
// Setters for each instance variable (validate age and weight)
public void setName(String newName)
{
name = newName;
}
public void setAge(int newAge)
{
if ((newAge < 0) && (newAge != DEFAULT_AGE))
{
System.out.println("Error: Invalid age.");
System.exit(99);
}
age = newAge;
}
public void setWeight(double newWeight)
{
if ((newWeight < 0.0) && (newWeight != DEFAULT_WEIGHT))
{
System.out.println("Error: Invalid weight.");
System.exit(98);
}
weight = newWeight;
}
/************************************
* getters for name, age, and weight
************************************/
public String getName( )
{
return name ;
}
public int getAge( )
{
return age ;
}
public double getWeight( )
{
return weight ;
}
/****************************************************
* toString() shows the pet's name, age, and weight
* equals() compares all three instance variables
****************************************************/
public String toString( )
{
return ("Name: " + name + " Age: " + age + " years"
+ " Weight: " + weight + " pounds");
}
public boolean equals(Pets anotherPet)
{
if (anotherPet == null)
{
return false ;
}
return ((this.getName().equals(anotherPet.getName())) &&
(this.getAge() == anotherPet.getAge()) &&
(this.getWeight() == anotherPet.getWeight())) ;
}
}
主类:
import java.util.Scanner ;
import java.io.FileInputStream ;
import java.io.FileNotFoundException ;
import java.io.IOException ;
public class PetsMain
{
public static void main (String[] args)
{
Scanner keyboard = new Scanner(System.in) ;
System.out.println("Please enter the number of pets") ;
int numberOfPets = keyboard.nextInt() ;
String fileName = "pets.txt" ;
FileInputStream fileStream = null ;
String workingDirectory = System.getProperty("user.dir") ;
System.out.println("Working Directory for this program: " + workingDirectory) ;
try
{
String absolutePath = workingDirectory + "\\" + fileName ;
System.out.println("Trying to open: " + absolutePath) ;
fileStream = new FileInputStream(absolutePath) ;
System.out.println("Opened the file ok.\n") ;
}
catch (FileNotFoundException e)
{
System.out.println("File \'" + fileName + "\' is missing") ;
System.out.println("Exiting program. ") ;
System.exit(0) ;
}
Scanner fileScanner = new Scanner(fileStream) ;
int sumAge = 0 ;
double sumWeight = 0 ;
String petName = "Pet Name" ;
String dogAge = "Age" ;
String dogWeight = "Weight" ;
String line = "--------------" ;
System.out.printf("%11s %15s %19s %n", petName, dogAge, dogWeight) ;
System.out.printf("%s %17s %17s %n", line, line, line) ;
for (int counter = 0; counter < numberOfPets; counter++)
{
fileScanner.useDelimiter(",") ;
String name = fileScanner.next() ;
fileScanner.useDelimiter(",") ;
int age = fileScanner.nextInt() ;
fileScanner.useDelimiter("[,\\s]") ;
double weight = fileScanner.nextDouble() ;
Pets pets = new Pets(name, age, weight) ;
sumAge += age ;
sumWeight += weight ;
System.out.printf("%-15s %15d %18s %n", name, age, weight) ;
System.out.println(pets.toString()) ; // Print until above is done
}
/*How do I make this?
Smallest pet: Name: Tweety Age: 2 years Weight: 0.1 pounds
Largest pet: Name: Dumbo Age: 6 years Weight: 2000.0 pounds
Youngest pet: Name: Fido Age: 1 years Weight: 15.0 pounds
Oldest pet: Name: Sylvester Age: 10 years Weight: 8.3 pounds
*/
System.out.println("\nThe total weight is " + sumWeight) ;
System.out.println("\nThe total age is " + sumAge) ;
try
{
fileStream.close() ;
}
catch (IOException e)
{
// don't do anything
}
}
}
请记住,只有主类是我们可以更改的。在 Main 类中,我注意到的部分
// Print until above is done it prints the following:
Pet Name Age Weight
-------------- -------------- --------------
Fido 1 15.0
Name: Fido Age: 1 years Weight: 15.0 pounds
Tweety 2 0.1
Name:
Tweety Age: 2 years Weight: 0.1 pounds
Sylvester 10 8.3
Name:
Sylvester Age: 10 years Weight: 8.3 pounds
Fido 1 15.0
Name:
Fido Age: 1 years Weight: 15.0 pounds
Dumbo 6 2000.0
Name:
Dumbo Age: 6 years Weight: 2000.0 pounds
是否可以让它打印在不同的“段落”上?例如,像这样:
Pet Name Age Weight
-------------- -------------- --------------
Fido 1 15.0
Tweety 2 0.1
Sylvester 10 8.3
Fido 1 15.0
Dumbo 6 2000.0
Name: Fido Age: 1 years Weight: 15.0 pounds
Name: Tweety Age: 2 years Weight: 0.1 pounds
Name: Sylvester Age: 10 years Weight: 8.3 pounds
Name: Fido Age: 1 years Weight: 15.0 pounds
Name: Dumbo Age: 6 years Weight: 2000.0 pounds
我试图为第二部分创建一个不同的循环,但我遇到了尝试访问宠物的问题。唯一可以访问的是最后一个使用的。有什么想法吗?
更新:主要问题已解决,但我还有一个小问题。当我运行程序时,我得到这个:
Name: Fido Age: 1 years Weight: 15.0 pounds
Name:
Tweety Age: 2 years Weight: 0.1 pounds
Name:
Sylvester Age: 10 years Weight: 8.3 pounds
Name:
Fido Age: 1 years Weight: 15.0 pounds
Name:
Dumbo Age: 6 years Weight: 2000.0 pounds
为什么其余的宠物不与名称对齐?
最佳答案
单独存储每只宠物的简单方法是创建一个 ArrayList
,它就像一个集合,您可以在其中存储每只宠物,并且您可以随时访问它们的信息以了解其中的索引。
在代码中,我们在循环外声明了变量,这样我们就可以在 hole 类中访问这些变量,然后我们初始化对象并创建 ArrayList(记得在 Pets 类中创建一个空的构造函数。
当你有循环读取文件时,你将每只宠物添加到 ArrayList 中:
pets.add(new Pets(name,age,weight));
所以在读取循环之外,我们创建了另一个循环来访问 ArrayList 的每个索引,如果你只想要一只宠物,你可以创建一个循环来查找确切的名称或类似的东西,这比仅打印和打印更有用切勿存放宠物。所以基本上您可以使用 pets.get(x)
访问宠物,其中 x 是宠物的索引。
public class PetsMain {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// We declare variables here
String name;
int age;
double weight;
Pets pet = new Pets(); // Initialize Object
ArrayList<Pets> pets = new ArrayList<Pets>(); // We create the ArrayList
Scanner keyboard = new Scanner(System.in) ;
System.out.println("Please enter the number of pets") ;
int numberOfPets = keyboard.nextInt() ;
String fileName = "pets.txt" ;
FileInputStream fileStream = null ;
String workingDirectory = System.getProperty("user.dir") ;
System.out.println("Working Directory for this program: " + workingDirectory) ;
try
{
String absolutePath = workingDirectory + "\\" + fileName ;
System.out.println("Trying to open: " + absolutePath) ;
fileStream = new FileInputStream(absolutePath) ;
System.out.println("Opened the file ok.\n") ;
}
catch (FileNotFoundException e)
{
System.out.println("File \'" + fileName + "\' is missing") ;
System.out.println("Exiting program. ") ;
System.exit(0) ;
}
Scanner fileScanner = new Scanner(fileStream) ;
int sumAge = 0 ;
double sumWeight = 0 ;
String petName = "Pet Name" ;
String dogAge = "Age" ;
String dogWeight = "Weight" ;
String line = "--------------" ;
System.out.printf("%11s %15s %19s %n", petName, dogAge, dogWeight) ;
System.out.printf("%s %17s %17s %n", line, line, line) ;
for (int counter = 0; counter < numberOfPets; counter++)
{
fileScanner.useDelimiter(",") ;
name = fileScanner.next() ;
fileScanner.useDelimiter(",") ;
age = fileScanner.nextInt() ;
fileScanner.useDelimiter("[,\\s]") ;
weight = fileScanner.nextDouble() ;
sumAge += age ;
sumWeight += weight ;
System.out.printf("%-15s %15d %18s %n", name, age, weight) ;
// **We add the pet to the collection
pets.add(new Pets(name,age,weight)); // Adding it to the ArrayList
}
// Then we acces to the ArrayList and we print what we want.
for(int x=0; x < pets.size(); x++){
System.out.print(pets.get(x).toString());
}
System.out.println("\nThe total weight is " + sumWeight) ;
System.out.println("\nThe total age is " + sumAge) ;
try
{
fileStream.close() ;
}
catch (IOException e)
{
// don't do anything
}
}
}
希望对您有所帮助,如果您有任何问题,请发表评论:)
在这里您可以轻松找到有关在 Arraylist 上存储对象的信息并打印它:
How to add an object to an ArrayList in Java
How to get data from a specific ArrayList row using with a loop?
关于java - 在循环中同时打印两个字符串,但在单独的 "paragraphs"上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51626820/
Java 专家需要您的帮助。 今天我在一次采访中被问到这个问题,但我无法解决。所以我需要一个解决方案来解决这个问题; 反转字符串 Input : Hello, World! Output : oll
目标:单击按钮并将成分作为单独的项目添加到数组中。 当前设置: 这给出:蓝莓芒果柠檬汁 然后我希望能够通过单击按钮将成分作为单独的项目添加到数组中: var allI
如何编写正则表达式来匹配它(参见箭头): "this is a ->'' this is a "test' there is another "test' 第二种情况 /\b'/ Regex Demo
我有一个数组,其中包含有限数量的项目。我想随机删除项目,直到所有项目都被使用过一次。 示例 [1,2,3,4,5] 使用了随机数 5,所以我不想再这样了。使用了随机数 2,所以我不想再这样了。等等..
首先,抱歉,如果这太主观了,我只是不知道还能怎么问/去哪里问。 无论如何,鉴于我最近的所有问题,我准备很快发布一个 Android 应用程序,并且大部分测试都是在我的手机 Droid 上完成的。我真的
这可能不是这个问题的正确位置,如果不合适请随意移动它。我标记为 Delphi/Pascal 因为这是我在 atm 中工作的内容,但这可能适用于我猜的所有编程。 无论如何,我正在做一些代码清理,并考虑将
我像这样分隔了其余 api 的路由。有没有更好的方法来组织路由器?还是我现在的做法没问题? app.js app.use('/api/auth',auth); 应用程序/ Controller /au
我在 2 个单独的工作表中包含以下数据: 表1: A B C D a ff dd ff ee b 12 10 10 12 表2: A B C
我正在使用 jQuery,并在位于单独 HTML 文件中的表中获取了几行。单击时,每一行都会成功重定向到本地 HTML 文件。 (使用window.location) 我想要实现的目标 我想要完成的是
我有重叠背景图像的问题,当它们重叠时会导致阴影比不重叠时更暗,从而产生不均匀的阴影。 我有一个高度灵活的盒子,带有一些透明的背景图像和阴影以创建漂亮的边框。盒子本质上是 3 个元素。 您可以在此处找到
按照正常的微服务框架,我们希望将每个微服务放入其自己的 git 存储库中,然后为 Service Fabric 项目创建一个存储库。当我们更新其中一个微服务时,Service Fabric 项目将仅重
我想将多个片段嵌入到一个指令中。这是我的设置方式。 Everyone Development (3)
我希望在保留原件的同时将多个文件 gzip 到一个目录中(到多个 .gz 文件中)。 我可以使用这些命令来处理单个文件: find . -type f -name "*cache.html" -exe
有没有办法分别知道每个 Eclipse 插件消耗了多少内存? 最佳答案 进行堆转储并使用例如分析它Eclipse Memory Analyser . 如需更多信息,请参阅 Analyzing Equi
我们使用cusrom插件并以这种方式定义脚本(这是一个近似的伪代码): //It is common part for every script (1) environments { "env1"
我在控制台应用程序中托管了一个集线器,并有一个 WPF 应用程序连接到它。它工作得很好。然后我将集线器移到一个单独的项目中,并将主机的引用添加到新项目中。现在我收到 500 错误,没有其他详细信息。
是否可以在单独的 JAR 文件中为 JavaBean 构建类?具体来说,JavaBean 在一个 JAR 文件中具有 Bean 和 BeanInfo 类,而自定义属性编辑器类位于另一个 JAR 文件中
好的,所以我有一个 MAF 应用程序,它在单独的应用程序域中加载每个插件。这非常适合我的需要,因为它允许我在运行时动态卸载和重新加载我的插件。 问题是,我需要能够在子应用域中处理未处理的异常,捕获它,
在参加在线数据库类(class)(针对初学者)时,我注意到一个问题,我必须查找涉及...至少两个不同值的查询...例如, ELMASRI 书中的 COMPANY 数据库指出:查找至少从事两个不同项目的
(首先:我已经尝试了涉及边距、边框等的所有选项。) Link to problematic page. Link to similarly constructed, non-problematic p
我是一名优秀的程序员,十分优秀!