gpt4 book ai didi

java - 如何使用实例变量隐藏接口(interface)变量

转载 作者:太空宇宙 更新时间:2023-11-04 11:55:54 27 4
gpt4 key购买 nike

我在使用实例变量隐藏接口(interface)变量时遇到一些问题。我知道如何通过重写该方法并在方法内手动分配变量来实现此目的,但无法弄清楚如何使用调用该方法的任何对象的实例变量。

public interface ShakesHands {

static final String name = "Gabe";

public void shakeHands (ShakesHands other);
}

class Student implements ShakesHands{

String name;

@Override
public void shakeHands(ShakesHands other) {
String othersName = other.name;
System.out.println(name + " shook " + othersName + "'s hand.");
}
}

class Parent implements ShakesHands{

String name;

@Override
public void shakeHands(ShakesHands other) {
String othersName = other.name;
System.out.println(name + " shook " + othersName + "'s hand.");
}
}

public class App {

public static void main(String[] args) {

Student student1 = new Student();
student1.name = "Bob";

Parent parent1 = new Parent();
parent1.name = "Sally";

student1.shakeHands(parent1);
}
}

此代码将输出“Bob 握了 Gabe 的手。”有什么方法可以阻止它引用接口(interface)名称“Gabe”,而是引用实例名称“Sally”,以便我得到“Bob 握了 Sally 的手”?

最佳答案

抛开关于编码风格和干净代码的问题,这就是为什么你的代码总是打印“...握着 Gabe 的手。”:

握手的方法实现引用了 ShakesHands 实例的“名称”,而不是实现类之一的“名称”。由于 ShakesHands 中的唯一“名称”在这里“在范围内”,因此您最终总是使用值为“Gabe”的静态变量。

编译器实际上最好始终使用静态变量值,而不是使用实现类的变量(如果存在此类变量)。派生类或实现类中的数据类型不需要与父类(super class)/接口(interface)中的数据类型相同,因此您可以让 ShakeHand 的名称与 Student 名称的类型不同。

示例:

public interface ShakesHands {

String name = "Gabe";

public void shakeHands(ShakesHands other);
}

class Student implements ShakesHands {

Integer name = Integer.valueOf(0);

@Override
public void shakeHands(ShakesHands other) {
System.out.println(name.getClass().getSimpleName() + " (in this class) with value "+name+" vs. " + other.name.getClass().getSimpleName()+" (in other class) with value "+other.name);
}
}

对于我的示例调用,打印文本是“值为 7 的整数(在此类中)与值为 Gabe 的字符串(在其他类中)”。

另一件事:即使在程序的所有实现中,实现类中都有一个“名称”变量:在编译时,编译器不知道运行时是否仍然如此。您的 JAR 可能会在定义“UnnamedShakesHand”类(没有“name”变量)的另一个程序中使用。那么应该发生什么?如果实现类用另一个类定义了“名称”,您的代码会发生什么情况?它是否应该因为您的“String otherName = other.name;”而抛出“ClassCastException”指令?

长话短说:在“ShakesHands”接口(interface)中引入一个“String getName()”方法。每个实现类都可以返回其名称的变量值,一切都很好。

关于java - 如何使用实例变量隐藏接口(interface)变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41401260/

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