gpt4 book ai didi

java - 从2个类继承不同的 boolean 值

转载 作者:行者123 更新时间:2023-12-01 11:38:43 25 4
gpt4 key购买 nike

我构建了一个狗舍系统,可以使用 .txt 文件将狗检查到系统中,允许您执行各种操作,例如搜索、删除、打印所有内容等。

我目前正在使用继承为猫添加功能,因为它们共享许多相同的变量(名称、最喜欢的食物等)。

我使用的是狗和猫特有的 boolean 值,对于狗来说是“狗喜欢骨头吗”,对于猫来说是“猫可以一起运行吗”。

我在使用继承时遇到了问题,因为两个 boolean 值不同(显然)并且在代码中使用不同的变量/标识符(不确定这里的术语是否正确,如果可能,请告诉我)并且它抛出错误。

这是我到目前为止所拥有的

import java.util.ArrayList;

public class Pet {

protected ArrayList<Owner> originalOwners;
//private boolean likesBones;
protected String petName;
protected String favFood;
protected int foodPerDay;

public Pet(String name, ArrayList<Owner> owners, String food, int mealsPerDay) {
petName = name;
this.favFood = food;
this.foodPerDay = mealsPerDay;
originalOwners = new ArrayList<Owner>();
for(Owner o: owners){
Owner copy = new Owner(o.getName(), o.getPhone());
originalOwners.add(copy);
}
}

public String getName() {
return petName;
}

public void setName(String newName) {
petName = newName;
}

/**
* Returns a copy of the original owners
* @return A copy of the original owners as an array
*/
public Owner[] getOriginalOwners(){
Owner[] result = new Owner[originalOwners.size()];
result = originalOwners.toArray(result);
return result;
}

/**
* How many times a day to feed the dog
* @param feeds The number of feeds per day
*/
public void setFeedsPerDay(int feeds){
foodPerDay = feeds;
}

/**
* The number of feeds per day the dog is fed
* @return The number of feeds per day
*/
public int getFeedsPerDay(){
return foodPerDay;
}

/**
* What's his favourite food?
* @param food The food he likes
*/
public void setFavouriteFood(String food){
favFood = food;
}

/**
* The food the dog likes to eat
* @return The food
*/
public String getFavouriteFood(){
return favFood;
}

/**
* Note that this only compares equality based on a
* dog's name.
* @param The other dog to compare against.
*/
@Override
public boolean equals(Object obj) { // Generated by Eclipse to be more robust
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Dog other = (Dog) obj;
if (petName == null) {
if (other.petName != null)
return false;
} else if (!petName.equals(other.petName))
return false;
return true;
}

/**
* A basic implementation to just return all the data in string form
*/
public String toString() {
return "Dog name:" + petName + "Original Owner:" + originalOwners + "Favfood:" + favFood
+ "FoodPerDay:" + foodPerDay;
}

}

狗类:

import java.util.ArrayList;

public class Dog extends Pet {
public static boolean likesBones;
public Dog(String name, ArrayList<Owner> owners, String food, int mealsPerDay, boolean likeBones) {
super(name, owners, food, mealsPerDay);
Dog.likesBones = likeBones;
}

/**
* Does the dog like bones?
* @return true if he does
*/
public static boolean getLikesBones() {
return likesBones;
}
}

猫类

import java.util.ArrayList;

public class Cat extends Pet {
public static boolean shareRun;
public Cat(String name, ArrayList<Owner> owners, String food, int mealsPerDay, boolean shareRun) {
super(name, owners, food, mealsPerDay);
Cat.shareRun = shareRun;
}

public boolean getShareRun(boolean doesShare) {
return shareRun;
}
}
<小时/>

我无法将 likeBones 和 shareRun 的 boolean 值添加到 Pet() 中,因为它们来自不同的类,所以如果我尝试添加一只狗,我会得到一个空点异常(我相信),反之亦然。对于猫来说也是如此。

我的问题:如何在 Pet() 类中支持猫和狗的 boolean 值而不引发异常?

请告诉我这个问题是否有意义,我之前在解释我的问题时遇到了一些麻烦(编程新手)。提前谢谢大家。

最佳答案

因为 Likebones 是狗特有的,所以它应该只存在于 Dog 类中,而不是父 Pet 类中。同样,shareRun 应该只存在于 Cat 类中,而不是父 Pet 类中。

逻辑地思考结构。父类应该包含其所有子类使用的信息 - 其要点是允许共享功能。不共享的功能不属于旨在帮助共享功能的位置。

如果您需要为 Pet 的任何子级使用该 boolean 值的函数,您可以做的是在父级中定义一个通用的 boolean 特殊值并实现使用它的函数,然后在其他地方保留跟踪每种类型宠物的特殊是什么 - 但不了解您的系统,我不确定它是否最适合您。

关于java - 从2个类继承不同的 boolean 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29734338/

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