访问接口的重写变量

发布于 2025-01-06 01:39:37 字数 113 浏览 0 评论 0原文

假设我有一个带有字段的接口 - String type =“interface”。
它的实现类有一个字段 - String type = "class"。
有什么方法可以通过该类访问接口的字段吗?

Lets say I have an interface with a field - String type = "interface".
It's implementing class has a field - String type = "class".
Is there any way to access the interface's field through that class anymore?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蹲墙角沉默 2025-01-13 01:39:37
public interface Firstone {
String type="interface";
}
public class Abc implements Firstone {

/**
 * @param args
 */
String type="class";
void check(){

    System.out.println("my class\t"+type);
    System.out.println("my interface\t"+Firstone.type);
}

public static void main(String[] args) {

    Abc a=new Abc();
    a.check();
}

}

public interface Firstone {
String type="interface";
}
public class Abc implements Firstone {

/**
 * @param args
 */
String type="class";
void check(){

    System.out.println("my class\t"+type);
    System.out.println("my interface\t"+Firstone.type);
}

public static void main(String[] args) {

    Abc a=new Abc();
    a.check();
}

}

抱着落日 2025-01-13 01:39:37

是的..因为基本上接口变量是公共静态最终或换句话说,一个常量..

您可以使用静态方式访问它

IYourInterfaceName.type

Yep.. because basically interface variable are public static final or in other word, a constant..

you can access it in a static way using your

IYourInterfaceName.type
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文