Skip to content

Latest commit

 

History

History
30 lines (17 loc) · 541 Bytes

File metadata and controls

30 lines (17 loc) · 541 Bytes

Basics

Class:

A class is a blueprint or prototype from which objects are created.

Interface

An interface is a contract between a class and the outside world. When a class implements an interface, it promises to provide the behavior published by that interface.


Variables:

  • Instance variablev(Non-Static Fields) :
  • Class variable(Static Fields) :
  • Local variable :
  • Parameters :

OOPS Concepts