interface

java中interface的用法

答案:java 中,接口定义一组方法供类实现,实现代码重用和松耦合。接口使用 interface 关键字声明,包含方法声明但没有实现。类通过 implements 实现接口,必须实…