欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java继承的实现与继承限制分析

程序员文章站 2024-02-23 22:01:22
本文实例讲述了java继承的实现与限制。分享给大家供大家参考,具体如下: java继承的实现 继承的实现 1.继承的基本概念 扩展父类的功能 2.java中使用e...

本文实例讲述了java继承的实现与限制。分享给大家供大家参考,具体如下:

java继承的实现

继承的实现

1.继承的基本概念

扩展父类的功能

2.java中使用extends关键字完成继承。

示例代码:

public class extendsdemo01 {
  static class person{
    private int age;
    private string name;
    public int getage() {
      return age;
    }
    public void setage(int age) {
      this.age = age;
    }
    public string getname() {
      return name;
    }
    public void setname(string name) {
      this.name = name;
    }
    public void tell(){
      system.out.println("姓名: "+getname()+" 年龄:"+getage());
    }
  }
  static class student extends person{
    private int score;
    public int getscore() {
      return score;
    }
    public void setscore(int score) {
      this.score = score;
    }
    public void say(){
      system.out.println("成绩:"+getscore());
    }
  }
  public static void main(string [] args){
    student s=new student();
    s.setage(20);
    s.setname("张三");
    s.setscore(100);
    s.tell();
    s.say();
  }
}

运行结果:

姓名: 张三  年龄:20
成绩:100

java中继承的限制

1、在java中只允许单继承。

2、子类不能直接访问父类的私有成员。

示例代码:

public class extendsdemo02 {
  static class people{
    private int age;
    public int getage() {
      return age;
    }
    public void setage(int age) {
      this.age = age;
    }
  }
  static class worker extends people{
    public void tell(){
      system.out.println(getage());
    }
  }
  static class petworker extends worker{
  }
  public static void main(string [] args){
    worker worker=new worker();
    worker.setage(100);
    worker.tell();
  }
}

运行结果:

100

更多java相关内容感兴趣的读者可查看本站专题:《java面向对象程序设计入门与进阶教程》、《java数据结构与算法教程》、《java操作dom节点技巧总结》、《java文件与目录操作技巧汇总》和《java缓存操作技巧汇总

希望本文所述对大家java程序设计有所帮助。