接口--interface
摘要:
接口的定义格式: interface 接口名{ }接口的实现格式: class 类名 implements 接口名{ } 代码示例如下: 1 interface A{ 2 String name = "接口A"; //默认修饰符为 public static final 等价于 public sta 阅读全文
posted @ 2016-11-30 17:52 Dev_Nick 阅读(245) 评论(0) 推荐(0) 编辑