gpt4 book ai didi

java - 接口(interface)方法的自定义实现

转载 作者:行者123 更新时间:2023-11-30 05:12:27 25 4
gpt4 key购买 nike

我对这种情况有疑问,我在这里发布了一些示例代码......

public interface a{

public void m1();
public void m2();
public void m3();
.
.
.
public void m100();
}


public class A implements a{

public void m3(){

// implementation code

}

// Here i need to implement only m3() method but not all 100 methods
//basically i have to implement all the other 99 methods
// but here i don't want to either implement or provide skeleton declarations for all
//remaining.... what should i do for compiling this ????


}

有人可以帮忙吗?

最佳答案

我建议创建一个名为 AbstractA 的抽象类,它实现了接口(interface) A,但其所有方法都有 null 实现。然后让每个实现类扩展 AbstractA

我还想知道为什么你有一个包含所有这些方法的接口(interface),而它们并不打算由每个实现该接口(interface)的类来实现。几乎可以肯定,这里存在核心设计问题。

关于java - 接口(interface)方法的自定义实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2923684/

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