Searching for: Methods in Java
Constructor
Language: Java

A constructor is a special method that builds the object when a new object is created.

Inheritance
Language: Java

Inheritance is used to inherit another class' members, including fields and methods. A child class extends a parent class' members.

Access Modifiers
Language: Java

Access modifiers restrict or permit direct access to a member (method, class, field, etc.) outside of a class or scope.

Interfaces
Language: Java

An interface provides a framework for a class. It gives method signatures and constants to the class to be implemented. A class that uses an interface <i>implements</i> the interface.


< Previous Page   |   Next Page >