序言:
不知道大家是否有这样的思考:在java面向对象的语言的开发过程中,子类是如何继承调用到父类的方法的?
1.示例
Animal 动物父类
/**
* @author 李娜
* @version 0.0.1
* @since 0.0.1 2019-09-19
*/
public abstract class Animal{
protected String firstName;
protected String lastName;
protected Integer count=1;
private String name;
public void setCount(Integer count) {
this.count = count;
if(count<3){
this.count=3;
}
if(count>5){
this.count=5