JAVA基础 - 继承
摘要:
继承,即按照现有类的类型来创建新类,是复用的实现方式之一。 继承类可以访问基类的protected成员,但不能访问private成员。 一个例子就可以说明。 基类: @Data public class BaseModel { protected String testField; } i继承类: 阅读全文
posted @ 2021-02-25 20:45 fgxl 阅读(62) 评论(0) 推荐(0) 编辑