java interface 介绍

java interface 介绍interface 类似于 class 只不过 interface 里的所有方法都是 abstract 抽象的 当一个非抽象的 class 实现 implements 一个接口 interface 时 必须实现接口中所有方法 因为都是 abstract 抽象的 否则该 class 必须声明为 abstract sample1 interfaceusa publicclass

interface类似于class,只不过interface里的所有方法都是abstract抽象的,当一个非抽象的class实现(implements)一个接口interface时,必须实现接口中所有方法(因为都是abstract抽象的),否则该class必须声明为abstract.

————

sample1:

/*interface usage*/ public class InterfaceSample { public static void main(String[] args) { new Ball().basketball(); new Ball().football(); } } interface Sport{ void basketball(); //default public abstract void football(); } class Ball implements Sport{ @Override public void basketball() { System.out.println("hello, basketball!"); } @Override public void football() { System.out.println("hello, football!"); } } 

output:

hello, basketball!
hello, football!




————————-

sample2: 不同类通过接口实现通讯:

public class InterfaceSample2 { public static void main(String[] args) { GoodPeople p = new GoodPeople(); GetInfo info = new GetInfo(); info.setPeople(p); System.out.println(info.getName()+ " is "+info.getDoing()); } } interface People{ String name(); String doing(); } class GoodPeople implements People{ @Override public String name() { return "dylan"; } @Override public String doing() { return "donating"; } } class GetInfo{ People p; void setPeople(People p){ this.p = p; } String getName(){ return p.name(); } String getDoing(){ return p.doing(); } } 

output:

dylan is donating



注意点:

1、一个接口可以继承(extends)自另一个接口
2、不允许类的多继承,但允许接口的多继承(同时继承多个接口)
3、类可以实现多个接口
4、类在继承另一个类的同时,可以实现多个接口,先extends后implements








————————-

dylan  presents.




版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/176526.html原文链接:https://javaforall.net

(0)
上一篇 2026年3月26日 下午9:43
下一篇 2026年3月26日 下午9:43


相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号