访问接口的重写变量
假设我有一个带有字段的接口 - 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
}
}
是的..因为基本上接口变量是公共静态最终或换句话说,一个常量..
您可以使用静态方式访问它
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