标签:static log .com com 分享 pre 图片 name java 继承
父类 public class person { String name; int age; void eat(){ System.out.println("吃饭"); } void introduce(){ System.out.println("我的名字是"+name +",我的年龄是"+age); } }
子类 public class testper extends person { int grade; void study(){ System.out.println("学习,年级是"+this.grade); } }
测试下继承 public class ss { public static void main(String[] args){ testper testper=new testper(); testper.grade=1; testper.name="北京"; testper.age=10; testper.eat(); testper.introduce(); testper.study(); } }
输出
java的继承只能是单继承。
标签:static log .com com 分享 pre 图片 name java 继承
原文地址:http://www.cnblogs.com/leiziv5/p/7894830.html