标签:通过 style 接口 定义 size 实现 哪些 逗号 bsp
使用接口指定某个类必须实现哪些方法,但不需要定义这些方法的具体实现
接口通过 interface 来定义
接口声明的方法都必须是公有,这是接口的特性
实现接口使用 implements
类必须实现接口中所有的方法
类可以实现多个接口,用逗号分隔
interface 接口
原文地址:https://www.cnblogs.com/tufolin/p/13157795.html