码迷,mamicode.com
首页 > 编程语言 > 详细

java 继承

时间:2017-11-25 13:13:16      阅读:152      评论:0      收藏:0      [点我收藏+]

标签: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的继承只能是单继承。

java 继承

标签:static   log   .com   com   分享   pre   图片   name   java 继承   

原文地址:http://www.cnblogs.com/leiziv5/p/7894830.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!