gpt4 book ai didi

java - 在java中的单个引用中调用不同类的不同方法

转载 作者:行者123 更新时间:2023-12-01 14:56:44 25 4
gpt4 key购买 nike

在 Java 中遇到问题, 我们可以调用类方法,例如

interface samp{
public void printMsg();
}
ClassA implements samp{
public void printMsg()
{
S.o.p("Hi ClassA");
}
}
ClassB implements samp{
public void printMsg()
{
S.o.p("Hi ClassB");
}
}
public MainClass{
public static void main(String args())
{

samp s= new ClassA();
s.printMsg();
samp s= new ClassB();
s.printMsg();
}
}

我们可以做到这一点,我有不同类型的类方法,而不是所有类的类似方法,但我想实现 future ,可以吗?还有其他模式吗,请帮我找到这个。喜欢

ClassA{
public void fun1(){..}
public void fun2(){..}
}
ClassB{
public void fun3(){..}
public void fun4(){..}
}

想要使用单个引用来调用这些方法,需要动态地将对象分配给该引用,这可能吗 friend ?...提前致谢

最佳答案

使用通用接口(interface)无法做到这一点。您只能使用接口(interface)引用类型调用接口(interface)中定义的方法,即使它指向的属于另一个类的对象具有不同的其他方法。

关于java - 在java中的单个引用中调用不同类的不同方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14264942/

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