abstract class Man{ puclic abstract int GetAge(); } class HaPi : Man{ public int GetAge(){ return 18; } }
继承这个抽象类,必须实现里面的抽象方法,抽象类里面可以有不抽象的方法,像平常类那样