---
title: "Object and class in java"  
description: "Hi everyone in this blog we will learn about java object and classes.Introduction:  Object in java:In object-oriented programming technique, we design"  
author: "Anonymous User"  
published: 2015-04-14  
updated: 2018-02-24  
canonical: https://www.mindstick.com/blog/10869/object-and-class-in-java  
category: "java"  
tags: ["oops", "class"]  
reading_time: 2 minutes  

---

# Object and class in java

Hi everyone in this blog we will learn about java object and classes.

#### Introduction:

\

## Object in java:

In object-[oriented programming](https://www.mindstick.com/forum/162/object-oriented-programming-oop-s) technique, we design a program using [objects and classes](https://www.mindstick.com/forum/156696/what-are-objects-and-classes-in-oops-programming).

Object is the physical [as well as](https://www.mindstick.com/interview/2481/can-you-write-a-java-class-that-could-be-used-both-as-an-applet-as-well-as-an-application) logical entity whereas class is the logical entity only.

An entity that has state and behavior is [known as](https://answers.mindstick.com/qa/35703/ricky-ponting-is-also-known-as-what) an object like chair, bike, marker, pen, table, car etc. It can be physical or logical (tengible and intengible). The example of integible object is [banking system](https://answers.mindstick.com/qa/43141/why-dld-the-u-s-banking-system-need-to-be-reformed-in-the-early-1900s).

## \

**An object has three characteristics:**

- state: represents data (value) of an object.
- behavior: represents the behavior ([functionality](https://www.mindstick.com/blog/136/using-watermark-functionality-in-textbox-by-jquery)) of an object such as deposit, withdraw etc.
- identity: Object identity is typically implemented via a [unique ID](https://www.mindstick.com/forum/33873/how-to-get-unique-id-of-alasset-for-identification-in-ios). 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.

For Example: Pen is an object. Its name is Reynolds, [color is white](https://www.mindstick.com/forum/12937/how-to-style-togglebutton-so-that-the-background-color-is-white) etc. known as its state. It is used to write, so writing is its behavior.

Object is an instance of a class. Class is a template or blueprint from which objects are created. So object is the instance(result) of a class.

Class in java:\
Syntax to declare a class:

##

A class is a group of objects that has common properties. It is a template or blueprint from which objects are created.

## \

**A class in java can contain:**

v data member

v method

v constructor

v block

v [class and interface](https://www.mindstick.com/forum/95339/what-s-the-difference-between-an-abstract-class-and-interface-in-java)

```
class class_name{       data member;       method;}
```

Example:

##

```
class Sample{    Int id;    String name;    public static void main(String … s)    {         Sample obj=new Sample();         System.out.println(obj.id);         System.out.println(obj.name);    }} 
```

**Output:**

0 null

\

#### Instance variable in java:

\

Creating multiple objects by one type only:

Example:

##

[Instance variable](https://www.mindstick.com/forum/23344/multidimensional-array-of-nsinteger-as-instance-variable) is created inside the class but outside the method, is known as instance variable. Instance variable is not get memory at compile time. Instance variable get memory at run time when object is created.

##

We can create multiple objects by one type only as we do in case of primitives.

Sample obj1=new Sample(),obj2=new Sample();//Two object created in this line

```
class Sample{      void add(int a, int b)      {            System.out.println(a+b);      }            public static void main(String … s)            {                  Sample obj1=new Sample(),obj2=new Sample();                  obj1.add(10,20);                  obj2.add(45,20);            }}
```

## Output:

##

30

65

---

Original Source: https://www.mindstick.com/blog/10869/object-and-class-in-java

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
