Object and class in Java

Class: A class can be defined as a template/blueprint that describes the behavior/state that the object of its type supports. A class is a group of objects that has common properties. “A class is a way of binding the data and associated methods in a single unit”

A class in java contains:

  • Data Members

  • Method

  • Constructor

  • Block

  • Class and Interface

Object:

  • Object is the physical as well as logical entity whereas class is the only logical entity.

  • Object is an instance of class, object has state and behaviors.

Note: Instance is a mechanism of allocating sufficient amount of memory space for data members of a class.

Example:

A blueprint for a house design is like a class description. All the houses built from that blueprint are objects of that class. A given house is an instance.

An Object in java has three characteristics:

  • State

  • Behavior

  • Identity

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.

You can get the unique id of an ID using following method.

System.identityHashCode(obj);

Class is also can be used to achieve user defined data types

Example 1

Animal Class:

Dog, cat, and cow are belong to animal's class.

Each object has state and behaviors. State: - color, name, height, age etc.

Behaviors: - barking, eating, and sleeping etc.

Example 2

A blueprint for a house design is like a class description. All the houses built from that blueprint are objects of that class.

Syntax to declare a Class

class Class_Name { data member; method; }.

Steps for compiling and executing the java program

Java is very simple programming language first we write a java program and save it with program class name.

In below program we create a java program with "Test" name so we save this program with "Test.java" file name. We can save our java program anywhere in our system or computer.

Example 1:

class Test { public static void main(String[] args) { System.out.println("Hello Testing Bar"); System.out.println("This is My First Java Program"); }

Save Java Program

Syntax: Filename.java

Example: Test.java

Compile and Execute Java Code

To compile: javac Test.java

To execute: java Test

Output

This is My First Java Program

Note: Here Javac and Java are called tools or application programs or exe files developed by sun micro system and supply as a part of jdk 1.6/1.7/1.8 in bin folder. Javac is used for compile the java program and java is used for run the java program.

Note: A java program can contain any number of main method but JVM start execution from that main() method which is taking array of object of String class.

Example of Object and Class

In this example, we have created an Employee class that has two data members, eid and ename. We are creating the object of the Employee class by new keyword and printing the objects value.

Example 2

ackage pack1;

www.testingbar.com Sujoy@testingbar.com public class Employee

{ int eid=852; // data member (or instance variable) String ename="Rohit"; // data member (or instance variable)

public static void main(String args[]) { Employee e=new Employee(); // Creating an object of class Employee System.out.println("Employee ID: "+e.eid); System.out.println("Name: "+e.ename); } }

Output

Employee ID: 852

Name: Rohit

NOTE:

  • JAVA always follows dynamic memory allocation but not static memory allocation.

  • In order to create a memory space in JAVA we must use an operator called new. This new operator is known as dynamic memory allocation operator.

Syntax 1 for defining an OBJECT:

objname = new Clsname represents name of the class. Objname represents JAVA valid variable name treated as object. New is called dynamic memory allocation operator.

Clsname () represents constructor. The new operator will perform two standard actions. They are:

1. It allocates sufficient amount of memory space for the data members of the class.

2. It takes an address of the class and stored in the left hand side variable of syntax 1

Syntax 2 for defining an OBJECT:

objname; //object declaration

Objname = new; //object refrencing

Example 3

package pack1;

public class Employee

{ www.testingbar.com Sujoy@testingbar.com int eid=1020; String eName="Sujoy"; void show() { System.out.println("eid="+eid); System.out.println("eName="+eName); } public static void main(String[] args)

{ Employee obj = new Employee(); Employee obj2 = new Employee(); obj.show(); obj2.show();

Output:

eid=1020

eName=Sujoy

eid=1020

eName=Sujoy Example: 4

package pack1;

public class Employee { int eid; String eName; void setValue(int a,String b) { eid=a; eName=b; } void show() { System.out.println("eid="+eid);

System.out.println("eName="+eName); } public static void main(String[] args) { Employee obj1 = new Employee(); Employee obj2 = new Employee(); obj1.setValue(747, "Sujoy"); obj2.setValue(856, "Rohit");

Output:

eid=747

eName=Sujoy

eid=856

eName=Rohit

Last updated