DEV Community

Kandasami T
Kandasami T

Posted on

Java Object

Object is a fundamental unit of Object-Oriented Programming (OOP) and represents real-world entities.
An object is an instance of class.
It can be created with "new" keyword followed by the classname, we use that class reference and assign data to my class object and use it where we needed.

Top comments (0)