作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是代码:
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/
我是一名优秀的程序员,十分优秀!