gpt4 book ai didi

java - 强制子类中的 toString() 实现

转载 作者:搜寻专家 更新时间:2023-10-30 19:50:03 26 4
gpt4 key购买 nike

我有一个抽象父类,我希望它强制所有子类实现 toString() 方法。

但是放置:

public abstract String toString();

导致编译错误:

Repetitive method name/signature for method 'java.lang.String toString()' in class ...

我相信这可能是因为 groovy 已经定义了 toString。

谢谢

最佳答案

这对我有用。这是新的还是其他人只是错过了?

public abstract class Filterable
{
@Override
public abstract String toString();
}

public class ABC extends Filterable
{
// Won't compile without toString();
}

关于java - 强制子类中的 toString() 实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8719482/

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