August 2004
Intermediate to advanced
480 pages
9h 41m
English
The following example shows how to create a subclass using the extends keyword. In this example, Vehicle is the superclass, and Car is the subclass that inherits all of Vehicle's behavior. Car then will define behavior specific only to Cars.
class Vehicle {}
class Car extends Vehicle {}
Read now
Unlock full access