继承
父类的属性或者方法一般是使用 public 修饰符
子类使用 extends 继承父类
代码实现
定义一个父类Person
package com.kuangstudy.Demo05; public class Person { public void say(){ System.out.println("说了一句话!"); } }
使用子类Student继承父类
package com.kuangstudy.Demo05;
public class Student extends Person{ }
使用Application类进行测试
package com.kuangstudy.Demo05;
public class Application { public static void main(String[] args) { Student student = new Student(); student.say(); } }
Object类
在Java中,所有的类都直接或者间接继承了Object这个类