在面向对象的概念中,所有的对象都是通过类来描绘的,但是反过来,并不是所有的类都是用来描绘对象的,如果一个类中没有包含足够的信息来描绘一个具体的对象,这样的类就是抽象类。

抽象类除了不能实例化对象之外,类的其它功能依然存在,成员变量、成员方法和构造方法的访问方式和普通类一样。

由于抽象类不能实例化对象,所以抽象类必须被继承,才能被使用。也是因为这个原因,通常在设计阶段决定要不要设计抽象类。

父类包含了子类集合的常见的方法,但是由于父类本身是抽象的,所以不能使用这些方法。

在 Java 中抽象类表示的是一种继承关系,一个类只能继承一个抽象类,而一个类却可以实现多个接口。


抽象类

在 Java 语言中使用 abstract class 来定义抽象类。如下实例:

Employee.java 文件代码:

/* 文件名 : Employee.java */ public abstract class Employee { private String name; private String address; private int number; public Employee(String name, String address, int number) { System.out.println("Constructing an Employee"); this.name = name; this.address = address; this.number = number; } public double computePay() { System.out.println("Inside Employee computePay"); return 0.0; } public void mailCheck() { System.out.println("Mailing a check to " + this.name + " " + this.address); } public String toString() { return name + " " + address + " " + number; } public String getName() { return name; } public String getAddress() { return address; } public void setAddress(String newAddress) { address = newAddress; } public int getNumber() { return number; } }

注意到该 Employee 类没有什么不同,尽管该类是抽象类,但是它仍然有 3 个成员变量,7 个成员方法和 1 个构造方法。 现在如果你尝试如下的例子:

AbstractDemo.java 文件代码:

/* 文件名 : AbstractDemo.java */ public class AbstractDemo { public static void main(String [] args) { /* 以下是不允许的,会引发错误 */ Employee e = new Employee("George W.", "Houston, TX", 43); System.out.println("\n Call mailCheck using Employee reference--"); e.mailCheck(); } }

当你尝试编译 AbstractDemo 类时,会产生如下错误:

Employee.java:46: Employee is abstract; cannot be instantiated
      Employee e = new Employee("George W.", "Houston, TX", 43);
                   ^
1 error

继承抽象类

我们可以通过以下方式继承 Employee 类的属性:

Salary.java 文件代码:

/* 文件名 : Salary.java */ public class Salary extends Employee { private double salary; //Annual salary public Salary(String name, String address, int number, double salary) { super(name, address, number); setSalary(salary); } public void mailCheck() { System.out.println("Within mailCheck of Salary class "); System.out.println("Mailing check to " + getName() + " with salary " + salary); } public double getSalary() { return salary; } public void setSalary(double newSalary) { if(newSalary >= 0.0) { salary = newSalary; } } public double computePay() { System.out.println("Computing salary pay for " + getName()); return salary/52; } }

尽管我们不能实例化一个 Employee 类的对象,但是如果我们实例化一个 Salary 类对象,该对象将从 Employee 类继承 7 个成员方法,且通过该方法可以设置或获取三个成员变量。

AbstractDemo.java 文件代码:

/* 文件名 : AbstractDemo.java */ public class AbstractDemo { public static void main(String [] args) { Salary s = new Salary("Mohd Mohtashim", "Ambehta, UP", 3, 3600.00); Employee e = new Salary("John Adams", "Boston, MA", 2, 2400.00); System.out.println("Call mailCheck using Salary reference --"); s.mailCheck(); System.out.println("\n Call mailCheck using Employee reference--"); e.mailCheck(); } }

以上程序编译运行结果如下:

my.tv.sohu.com/us/439199764/663531960.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzY0LzY2MzUzMTk2MC5zaHRtbA==.html
my.tv.sohu.com/us/439200232/663531834.shtml
tv.sohu.com/v/dXMvNDM5MjAwMjMyLzY2MzUzMTgzNC5zaHRtbA==.html
my.tv.sohu.com/us/439200027/663531954.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI3LzY2MzUzMTk1NC5zaHRtbA==.html
my.tv.sohu.com/us/439199764/663531790.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzY0LzY2MzUzMTc5MC5zaHRtbA==.html
my.tv.sohu.com/us/439200232/663531950.shtml
tv.sohu.com/v/dXMvNDM5MjAwMjMyLzY2MzUzMTk1MC5zaHRtbA==.html
my.tv.sohu.com/us/439200027/663531787.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI3LzY2MzUzMTc4Ny5zaHRtbA==.html
my.tv.sohu.com/us/439199764/663531822.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzY0LzY2MzUzMTgyMi5zaHRtbA==.html
my.tv.sohu.com/us/439200232/663531779.shtml
tv.sohu.com/v/dXMvNDM5MjAwMjMyLzY2MzUzMTc3OS5zaHRtbA==.html
my.tv.sohu.com/us/439200027/663531698.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI3LzY2MzUzMTY5OC5zaHRtbA==.html
my.tv.sohu.com/us/439199764/663531940.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzY0LzY2MzUzMTk0MC5zaHRtbA==.html
my.tv.sohu.com/us/439200232/663531938.shtml
tv.sohu.com/v/dXMvNDM5MjAwMjMyLzY2MzUzMTkzOC5zaHRtbA==.html
my.tv.sohu.com/us/439200027/663531936.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI3LzY2MzUzMTkzNi5zaHRtbA==.html
my.tv.sohu.com/us/439199957/663531768.shtml
tv.sohu.com/v/dXMvNDM5MTk5OTU3LzY2MzUzMTc2OC5zaHRtbA==.html
my.tv.sohu.com/us/439199764/663531689.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzY0LzY2MzUzMTY4OS5zaHRtbA==.html
my.tv.sohu.com/us/439200232/663531807.shtml
tv.sohu.com/v/dXMvNDM5MjAwMjMyLzY2MzUzMTgwNy5zaHRtbA==.html
my.tv.sohu.com/us/439200027/663531805.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI3LzY2MzUzMTgwNS5zaHRtbA==.html
my.tv.sohu.com/us/439199957/663531927.shtml
tv.sohu.com/v/dXMvNDM5MTk5OTU3LzY2MzUzMTkyNy5zaHRtbA==.html
my.tv.sohu.com/us/439200232/663531919.shtml
tv.sohu.com/v/dXMvNDM5MjAwMjMyLzY2MzUzMTkxOS5zaHRtbA==.html
my.tv.sohu.com/us/439199764/663531754.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzY0LzY2MzUzMTc1NC5zaHRtbA==.html
my.tv.sohu.com/us/439200027/663531755.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI3LzY2MzUzMTc1NS5zaHRtbA==.html
my.tv.sohu.com/us/439200026/663531916.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI2LzY2MzUzMTkxNi5zaHRtbA==.html
my.tv.sohu.com/us/439200232/663531748.shtml
tv.sohu.com/v/dXMvNDM5MjAwMjMyLzY2MzUzMTc0OC5zaHRtbA==.html
my.tv.sohu.com/us/439200027/663531668.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI3LzY2MzUzMTY2OC5zaHRtbA==.html
my.tv.sohu.com/us/439199764/663531744.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzY0LzY2MzUzMTc0NC5zaHRtbA==.html
my.tv.sohu.com/us/439200026/663531482.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI2LzY2MzUzMTQ4Mi5zaHRtbA==.html
my.tv.sohu.com/us/439199957/663531666.shtml
tv.sohu.com/v/dXMvNDM5MTk5OTU3LzY2MzUzMTY2Ni5zaHRtbA==.html
my.tv.sohu.com/us/439200232/663531597.shtml
tv.sohu.com/v/dXMvNDM5MjAwMjMyLzY2MzUzMTU5Ny5zaHRtbA==.html
my.tv.sohu.com/us/439200027/663531737.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI3LzY2MzUzMTczNy5zaHRtbA==.html
my.tv.sohu.com/us/439199764/663531733.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzY0LzY2MzUzMTczMy5zaHRtbA==.html
my.tv.sohu.com/us/439200026/663531596.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI2LzY2MzUzMTU5Ni5zaHRtbA==.html
my.tv.sohu.com/us/439200232/663531585.shtml
tv.sohu.com/v/dXMvNDM5MjAwMjMyLzY2MzUzMTU4NS5zaHRtbA==.html
my.tv.sohu.com/us/439200027/663531649.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI3LzY2MzUzMTY0OS5zaHRtbA==.html
my.tv.sohu.com/us/439199957/663531725.shtml
tv.sohu.com/v/dXMvNDM5MTk5OTU3LzY2MzUzMTcyNS5zaHRtbA==.html
my.tv.sohu.com/us/439199764/663531653.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzY0LzY2MzUzMTY1My5zaHRtbA==.html
my.tv.sohu.com/us/439200232/663531466.shtml
tv.sohu.com/v/dXMvNDM5MjAwMjMyLzY2MzUzMTQ2Ni5zaHRtbA==.html
my.tv.sohu.com/us/439199957/663531576.shtml
tv.sohu.com/v/dXMvNDM5MTk5OTU3LzY2MzUzMTU3Ni5zaHRtbA==.html
my.tv.sohu.com/us/439199764/663531713.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzY0LzY2MzUzMTcxMy5zaHRtbA==.html
my.tv.sohu.com/us/439200027/663531709.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI3LzY2MzUzMTcwOS5zaHRtbA==.html
my.tv.sohu.com/us/439200026/663531642.shtml
tv.sohu.com/v/dXMvNDM5MjAwMDI2LzY2MzUzMTY0Mi5zaHRtbA==.html
my.tv.sohu.com/us/439199482/663531640.shtml
tv.sohu.com/v/dXMvNDM5MTk5NDgyLzY2MzUzMTY0MC5zaHRtbA==.html
my.tv.sohu.com/us/439200327/663531638.shtml
tv.sohu.com/v/dXMvNDM5MjAwMzI3LzY2MzUzMTYzOC5zaHRtbA==.html
my.tv.sohu.com/us/439199763/663531299.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYzLzY2MzUzMTI5OS5zaHRtbA==.html
my.tv.sohu.com/us/439199762/663531566.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYyLzY2MzUzMTU2Ni5zaHRtbA==.html
my.tv.sohu.com/us/439199867/663531563.shtml
tv.sohu.com/v/dXMvNDM5MTk5ODY3LzY2MzUzMTU2My5zaHRtbA==.html
my.tv.sohu.com/us/439200327/663531456.shtml
tv.sohu.com/v/dXMvNDM5MjAwMzI3LzY2MzUzMTQ1Ni5zaHRtbA==.html
my.tv.sohu.com/us/439199762/663531629.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYyLzY2MzUzMTYyOS5zaHRtbA==.html
my.tv.sohu.com/us/439199763/663531291.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYzLzY2MzUzMTI5MS5zaHRtbA==.html
my.tv.sohu.com/us/439199867/663531627.shtml
tv.sohu.com/v/dXMvNDM5MTk5ODY3LzY2MzUzMTYyNy5zaHRtbA==.html
my.tv.sohu.com/us/439199482/663531288.shtml
tv.sohu.com/v/dXMvNDM5MTk5NDgyLzY2MzUzMTI4OC5zaHRtbA==.html
my.tv.sohu.com/us/439200327/663531622.shtml
tv.sohu.com/v/dXMvNDM5MjAwMzI3LzY2MzUzMTYyMi5zaHRtbA==.html
my.tv.sohu.com/us/439199762/663531616.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYyLzY2MzUzMTYxNi5zaHRtbA==.html
my.tv.sohu.com/us/439199763/663531281.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYzLzY2MzUzMTI4MS5zaHRtbA==.html
my.tv.sohu.com/us/439199867/663531550.shtml
tv.sohu.com/v/dXMvNDM5MTk5ODY3LzY2MzUzMTU1MC5zaHRtbA==.html
my.tv.sohu.com/us/439199482/663531549.shtml
tv.sohu.com/v/dXMvNDM5MTk5NDgyLzY2MzUzMTU0OS5zaHRtbA==.html
my.tv.sohu.com/us/439200327/663531448.shtml
tv.sohu.com/v/dXMvNDM5MjAwMzI3LzY2MzUzMTQ0OC5zaHRtbA==.html
my.tv.sohu.com/us/439199762/663531546.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYyLzY2MzUzMTU0Ni5zaHRtbA==.html
my.tv.sohu.com/us/439199763/663531278.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYzLzY2MzUzMTI3OC5zaHRtbA==.html
my.tv.sohu.com/us/439199482/663531443.shtml
tv.sohu.com/v/dXMvNDM5MTk5NDgyLzY2MzUzMTQ0My5zaHRtbA==.html
my.tv.sohu.com/us/439200327/663531539.shtml
tv.sohu.com/v/dXMvNDM5MjAwMzI3LzY2MzUzMTUzOS5zaHRtbA==.html
my.tv.sohu.com/us/439199762/663531535.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYyLzY2MzUzMTUzNS5zaHRtbA==.html
my.tv.sohu.com/us/439199763/663531533.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYzLzY2MzUzMTUzMy5zaHRtbA==.html
my.tv.sohu.com/us/439199867/663531400.shtml
tv.sohu.com/v/dXMvNDM5MTk5ODY3LzY2MzUzMTQwMC5zaHRtbA==.html
my.tv.sohu.com/us/439200327/663531525.shtml
tv.sohu.com/v/dXMvNDM5MjAwMzI3LzY2MzUzMTUyNS5zaHRtbA==.html
my.tv.sohu.com/us/439199482/663531522.shtml
tv.sohu.com/v/dXMvNDM5MTk5NDgyLzY2MzUzMTUyMi5zaHRtbA==.html
my.tv.sohu.com/us/439199762/663531427.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYyLzY2MzUzMTQyNy5zaHRtbA==.html
my.tv.sohu.com/us/439199867/663531393.shtml
tv.sohu.com/v/dXMvNDM5MTk5ODY3LzY2MzUzMTM5My5zaHRtbA==.html
my.tv.sohu.com/us/439200327/663531513.shtml
tv.sohu.com/v/dXMvNDM5MjAwMzI3LzY2MzUzMTUxMy5zaHRtbA==.html
my.tv.sohu.com/us/439199482/663531250.shtml
tv.sohu.com/v/dXMvNDM5MTk5NDgyLzY2MzUzMTI1MC5zaHRtbA==.html
my.tv.sohu.com/us/439199762/663531511.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYyLzY2MzUzMTUxMS5zaHRtbA==.html
my.tv.sohu.com/us/439199763/663531251.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYzLzY2MzUzMTI1MS5zaHRtbA==.html
my.tv.sohu.com/us/439199867/663531509.shtml
tv.sohu.com/v/dXMvNDM5MTk5ODY3LzY2MzUzMTUwOS5zaHRtbA==.html
my.tv.sohu.com/us/439200327/663531242.shtml
tv.sohu.com/v/dXMvNDM5MjAwMzI3LzY2MzUzMTI0Mi5zaHRtbA==.html
my.tv.sohu.com/us/439199762/663531364.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYyLzY2MzUzMTM2NC5zaHRtbA==.html
my.tv.sohu.com/us/439199763/663531370.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYzLzY2MzUzMTM3MC5zaHRtbA==.html
my.tv.sohu.com/us/439199867/663531243.shtml
tv.sohu.com/v/dXMvNDM5MTk5ODY3LzY2MzUzMTI0My5zaHRtbA==.html
my.tv.sohu.com/us/439199482/663531367.shtml
tv.sohu.com/v/dXMvNDM5MTk5NDgyLzY2MzUzMTM2Ny5zaHRtbA==.html
my.tv.sohu.com/us/439199763/663531405.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYzLzY2MzUzMTQwNS5zaHRtbA==.html
my.tv.sohu.com/us/439199867/663531189.shtml
tv.sohu.com/v/dXMvNDM5MTk5ODY3LzY2MzUzMTE4OS5zaHRtbA==.html
my.tv.sohu.com/us/439199482/663531089.shtml
tv.sohu.com/v/dXMvNDM5MTk5NDgyLzY2MzUzMTA4OS5zaHRtbA==.html
my.tv.sohu.com/us/439199763/663531090.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYzLzY2MzUzMTA5MC5zaHRtbA==.html
my.tv.sohu.com/us/439199867/663531175.shtml
tv.sohu.com/v/dXMvNDM5MTk5ODY3LzY2MzUzMTE3NS5zaHRtbA==.html
my.tv.sohu.com/us/439200327/663531339.shtml
tv.sohu.com/v/dXMvNDM5MjAwMzI3LzY2MzUzMTMzOS5zaHRtbA==.html
my.tv.sohu.com/us/439199762/663531338.shtml
tv.sohu.com/v/dXMvNDM5MTk5NzYyLzY2MzUzMTMzOC5zaHRtbA==.html
 

Logo

有“AI”的1024 = 2048,欢迎大家加入2048 AI社区

更多推荐