摘要:
访问控制修饰符 修饰符 版本修饰/* public static final * protected abstract strictfp * (none) default * private //语句不能单独存在类中,放在方法中 1、static 方法 不能用 this 静态先于对象存在 stati 阅读全文
摘要:
package t0513; /** * */ /** * @author LU * * 2021年5月13日 */ //抽象类 public abstract class Animal { //抽象方法 public abstract void fly(); //非抽象方法 public void 阅读全文