Java Reference

Java Reference Home | Smart Soft Home

extends

Category

Other

Description

Initiates that one class is inheriting the properties and methods of another class.

Example

public class Employee extends Person{

  ...

  ...

}