gpt4 book ai didi

java - Sonar 重​​命名此方法;父类中有一个 "private"方法同名

转载 作者:搜寻专家 更新时间:2023-11-01 02:35:40 24 4
gpt4 key购买 nike

当我们使用与父私有(private)方法相同的名称时,Sonar 提示类中的私有(private)方法名称。在代码质量上定义一个与父私有(private)方法同名的私有(private)方法有什么缺点?

或者我们是否需要将其归类为误报

最佳答案

在我看来,这是因为这可能会造成混淆。考虑下面,阅读评论:

class Child extends Super{
public void myMethod() {
System.out.println("in child");
}
}

class Super{
public static void main(String[] args) {
Super s = new Child();
s.myMethod(); // At this point you might expect myMethod of child to be called if it'll call the Parent's since it is private.
}
private void myMethod() {
System.out.println("in super");
}
}

关于java - Sonar 重​​命名此方法;父类中有一个 "private"方法同名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54150765/

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