Object and Class in Java
Object is the physical as well as logical entity whereas class is the logical entity only.In this page, we will learn about java objects and classes. In object-oriented programming technique, we design a program using objects and classes.
Object in Java

An entitythat has state and behavior is known as an object e.g. chair, bike, marker, pen, table, car etc. It can be physical or logical (tengible and intengible). The example of integible object is banking system.
An object has three characteristics:
- state: represents data (value) of an object.
- behavior: represents the behavior (functionality) of an object such as deposit, withdraw etc.
- identity: Object identity is typically implemented via a unique ID. The value of the ID is not visible to the external user. But,it is used internally by the JVM to identify each object uniquely.
Simple Example of Object and Class
In this example, we have created a Student class that have two data members id and name. We are creating the object of the Student class by new keyword and printing the objects value.




