在声明中包含abstract关键字的类称为抽象类。
示例
本节为您提供了抽象类的示例。要创建抽象类,只需在类声明中的 class 关键字之前使用abstract 关键字即可。
/* File name : 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 类与 Java 中的普通类相同。该类现在是抽象的,但它仍然具有三个字段、七个方法和一个构造函数。
现在您可以尝试通过以下方式实例化 Employee 类 -
/* File name : AbstractDemo.java */ public class AbstractDemo { public static void main(String [] args) { /* Following is not allowed and would raise error */ Employee e = new Employee("George W.", "Houston, TX", 43); System.out.println("n Call mailCheck using Employee reference--"); e.mailCheck(); } }
当你编译上面的类时,它会给出以下错误 -
Employee.java:46: Employee is abstract; cannot be instantiated Employee e = new Employee("George W.", "Houston, TX", 43); ^ 1 error
Java中Lambda表达式的优点有哪些?
SpringBoot项目中如何便捷地查看发送到Redis服务器的命令?
在Java中声明ConcurrentHashMap时是否需要static关键字取决于你的使用场景和需求。如果你希望这个ConcurrentHashMap在整个应用程序的生命周期中都是共享的,并且能够被类的所有实例访问,那么你可以使用static关键字。例如: ```java private static ConcurrentHashMap map = new ConcurrentHashMap(); ``` 这样,`map`就会成为一个类变量,而不是实例变量,所有的类实例都可以访问和修改这个共享的ma
口袋妖怪战斗模拟器/对决克隆开发日志#0
Spring Boot中如何将多个URL路由映射到同一个方法?
线程堆栈大小与内存溢出:为什么复制2KB数据到1KB线程堆栈不溢出?