gpt4 book ai didi

java - 为什么这会导致 "The field name is ambiguous"错误?

转载 作者:行者123 更新时间:2023-12-01 06:56:59 27 4
gpt4 key购买 nike

这是代码:

public class MyClass implements Inreface1, Inreface2 {
public MyClass() {
System.out.println("name is :: " + name);
}

public static void main(String[] args) {
new MyClass();
}
}
//Interface1
public interface Inreface1 {
public String name="Name";
}
//Interface2
public interface Inreface2 {
public String name="Name";
}

这是它导致的错误:

The field name is ambiguous

有什么问题吗?什么叫模棱两可?

最佳答案

您的类正在实现两个接口(interface),并且在这两个接口(interface)上都定义了变量name。因此,当您在类中调用 name 时,Java 无法确定该变量是引用 Interface1.name 还是 Interface.name

这就是您的代码中的问题...

关于java - 为什么这会导致 "The field name is ambiguous"错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9430564/

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