gpt4 book ai didi

Java - 比较父类对象的子属性

转载 作者:行者123 更新时间:2023-11-30 07:06:32 24 4
gpt4 key购买 nike

我有 2 个类,Foo 和继承 Foo 的 BabyFoo。在 Main 方法中,我创建了一个对象 Foo f1 = new BabyFoo(3);。 BabyFoo 有一个重写其父方法的比较方法,该方法进行比较以确保对象属于同一类,并确保 thing 属性也具有相同的值。

我的问题是,在 BabyFoo 类的 compare 方法中,如何访问传入的争论的 thing 属性,因为它是 Foo 类型,因为 Foo 类没有 thing 属性,即使它是作为 创建的>新 BabyFoo(3).

public abstract class Foo
{
public boolean compare(Foo other)
{
//compare checks to make sure object is of this same class
if (getClass() != other.getClass())
return true;
else
return false;
}
}
public class BabyFoo extends Foo
{
protected int thing;

public void BabyFoo(int thing)
{
this.thing = thing;
}
@Override
public boolean compare(Foo other)
{
//compares by calling the parent method, and as an
//additional step, checks if the thing property is the same.
boolean parent = super.compare(other);
//--question do-stuff here
//how do I access other.thing(), as it comes in
//as a Foo object, which doesn't have a thing property
}
}

最佳答案

您需要通过编写类似的内容将 other 对象转换为 BabyFoo

((BabyFoo)other).thing

这是假设其他一切都是你想要的。

关于Java - 比较父类对象的子属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40030667/

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