The term Object-Oriented explains the concept of organizing the software as a combination of different types of objects that incorporates both data and behavior. Hence, Object_oriented programming(OOPs) is a programming model, that simplifies software development and maintenance by providing some rules. Programs are organised around objects rather than action and logic. It increases the flexibility and maintainability of the program. Understanding the working of the program becomes easier, as OOPs brings data and its behavior(methods) into a single(objects) location.
Basic concepts of OOPs are:
- Object
- Class
- Encapsulation
- Inheritance
- Polymorphism
- Abstraction
This article deals with Objects and Classes in Java.
Requirements of Classes and Objects in Object Oriented Programming
Classes: A class is a user defined blueprint or prototype from which objects are created. It represents the set of properties or methods that are common to all objects of one type. Classes are required in OOPs because:
- It provides template for creating objects, which can bind code into data.
- It has definitions of methods and data.
- It supports inheritance property of Object Oriented Programming and hence can maintain class hierarchy.
- It helps in maintaining the access specifications of member variables.
Objects: It is the basic unit of Object Oriented Programming and it represents the real life entities.
Real-life entities share two characteristics : they all have attributes and behavior.
An object consists of:
- State: It is represented by attributes of an object. It also shows properties of an object.
- Behavior: It is represented by methods of an object. It shows response of an object with other objects.
- Identity: It gives a unique name to an object. It also grants permission to one object to interact with other objects.
Objects are required in OOPs because they can be created to call a non-static function which are not present inside the Main Method but present inside the Class and also provide the name to the space which is being used to store the data.
Example : For addition of two numbers, it is required to store the two numbers separately from each other, so that they can be picked and the desired operations can be performed on them. Hence creating two different objects to store the two numbers will be an ideal solution for this scenario.
Example to demonstrate the use of Objects and classes in OOPs
Objects relate to things found in the real world. For example, a graphics program may have objects such as “circle”, “square”, “menu”. An online shopping system might have objects such as “shopping cart”, “customer”, and “product”.
Declaring Objects (Also called instantiating a class)
When an object of a class is created, the class is said to be instantiated. All the instances share the attributes and the behavior of the class. But the values of those attributes, i.e. the state are unique for each object. A single class may have any number of instances.
Example :
As we declare variables like (type name;). This notifies the compiler that we will use name to refer to data whose type is type. With a primitive variable, this declaration also reserves the proper amount of memory for the variable. So for reference variable, Â type must be strictly a concrete class name. In general, we can’t create objects of an abstract class or an interface.
Dog tuffy;
If we declare reference variable(tuffy) like this, its value will be undetermined(null) until an object is actually created and assigned to it. Simply declaring a reference variable does not create an object.
Â
Initializing an object using new
The new operator instantiates a class by allocating memory for a new object and returning a reference to that memory. The new operator also invokes the class constructor.
// Java program to illustrate the concept // of classes and objects // Class Declaration public class Dog { // Instance Variables String name; String breed; int age; String color; // Constructor Declaration of Class public Dog(String name, String breed, int age, String color) { this.name = name; this.breed = breed; this.age = age; this.color = color; } // method 1 public String getName() { return name; } // method 2 public String getBreed() { return breed; } // method 3 public int getAge() { return age; } // method 4 public String getColor() { return color; } @Override public String toString() { return ("Hi my name is " + this.getName() + ".\nMy breed, age and color are " + this.getBreed() + ", " + this.getAge() + ", " + this.getColor()); } public static void main(String[] args) { Dog tuffy = new Dog("tuffy", "papillon", 5, "white"); System.out.println(tuffy.toString()); } } |
Hi my name is tuffy. My breed, age and color are papillon, 5, white
- This class contains a single constructor. We can recognize a constructor because its declaration uses the same name as the class and it has no return type. The Java compiler differentiates the constructors based on the number and the type of the arguments. The constructor in the Dog class takes four arguments. The following statement provides “tuffy”, “papillon”, 5, “white” as values for those arguments:
Dog tuffy = new Dog("tuffy", "papillon", 5, "white");The result of executing this statement can be illustrated as :

Note : All classes have at least one constructor. If a class does not explicitly declare any, the Java compiler automatically provides a no-argument constructor, also called the default constructor. This default constructor calls the class parent’s no-argument constructor (as it contain only one statement i.e super();), or the Object class constructor if the class has no other parent (as Object class is parent of all classes either directly or indirectly).
Different ways to create Objects
- Using new keyword: It is the simplest way to create object. By using this method, the desired constructor can be called.
Syntax:
ClassName ReferenceVariable = new ClassName();
// Java program to illustrate the// creating and accessing objects// using new keyword// base classclassDog {// the class Dog has two fieldsString dogName;intdogAge;// the class Dog has one constructorDog(String name,intage){this.dogName = name;this.dogAge = age;}}// driver classpublicclassTest {publicstaticvoidmain(String[] args){// creating objects of the class DogDog ob1 =newDog("Bravo",4);Dog ob2 =newDog("Oliver",5);// accessing the object data through referenceSystem.out.println(ob1.dogName +", "+ ob1.dogAge);System.out.println(ob2.dogName +", "+ ob2.dogAge);}}chevron_rightfilter_noneOutput:Bravo, 4 Oliver, 5
- Using Class.newInstance() method: It is used to create new class dynamically. It can invoke any no-argument constructor. This method return class Class object on which newInstance() method is called, which will return the object of that class which is being passed as command line argument.
Reason for different exceptions raised:-
ClassNotFoundException will occur, if the passed class doesnât exist.
InstantiationException will occur, if the passed class doesnât contain default constructor as newInstance() method internally calls the default constructor of that particular class.
IllegalAccessException will occur, if the driving class doesnât has the access to the definition of specified class definition.Syntax:
ClassName ReferenceVariable = (ClassName) Class.forName("PackageName.ClassName").newInstance();// Java program to demonstrate// object creation using newInstance() method// Base classclassExample {voidmessage(){System.out.println("Hello Geeks !!");}}// Driver classclassTest {publicstaticvoidmain(String args[]){try{Class c = Class.forName("Example");Example s = (Example)c.newInstance();s.message();}catch(Exception e) {System.out.println(e);}}}chevron_rightfilter_noneOutput:Hello Geeks !!
- Using newInstance() method for Constructor class: It is a reflective way to create object. By using it one can call parametrized and private constructor. It wraps the thrown exception with an InvocationTargetException. It is used by different frameworks- Spring, Hibernate, Struts etc. Constructor.newInstance() method is preffered over Class.newInstance() method.
Syntax:
Constructor constructor = ClassName.class.getConstructor(); ClassName ReferenceVariable = constructor.newInstance();
Example:
// java program to demonstrate// creation of object// using Constructor.newInstance() methodimportjava.lang.reflect.Constructor;importjava.lang.reflect.InvocationTargetException;publicclassConstructorExample {// different exception is thrownpublicstaticvoidmain(String[] args)throwsNoSuchMethodException,SecurityException,InstantiationException,IllegalAccessException,IllegalArgumentException,InvocationTargetException{Constructor constructor = ExampleClass.class.getConstructor(String.class);ExampleClass exampleObject = (ExampleClass)constructor.newInstance("GeeksForGeeks");System.out.println(exampleObject.getemp_name());}}classExampleClass {// private variable declaredprivateString emp_name;publicExampleClass(String emp_name){this.emp_name = emp_name;}// get method for emp_named to access// private variable emp_namepublicString getemp_name(){returnemp_name;}// set method for emp_name to access// private variable emp_namepublicvoidsetemp_name(String emp_name){this.emp_name = emp_name;}}chevron_rightfilter_noneOutput:GeeksForGeeks
- Using clone() method: It is used to make clone of an object. It is the easiest and most efficient way to copy an object. In code, java.lang.Cloneable interface must be implemented by the class whose object clone is to be created. If Cloneable interface is not implemented, clone() method generates CloneNotSupportedException.
Syntax:
ClassName ReferenceVariable = (ClassName) ReferenceVariable.clone();
Example:
// java program to demonstrate// object creation using clone() method// employee class whose objects are clonedclassEmployeeimplementsCloneable {intemp_id;String emp_name;// default constructorEmployee(String emp_name,intemp_id){this.emp_id = emp_id;this.emp_name = emp_name;}publicObject clone()throwsCloneNotSupportedException{returnsuper.clone();}}// driver classpublicclassTest {publicstaticvoidmain(String args[]){try{Employee ob1 =newEmployee("Tom",201);// Creating a new reference variable ob2// which is pointing to the same address as ob1Employee ob2 = (Employee)ob1.clone();System.out.println(ob1.emp_id +", "+ ob1.emp_name);System.out.println(ob2.emp_id +", "+ ob2.emp_name);}catch(CloneNotSupportedException c) {System.out.println("Exception: "+ c);}}}chevron_rightfilter_noneOutput:201, Tom 201, Tom
- Using deserialization: To deserialize an object, first implement a serializable interface in the class. No constructor is used to create an object in this method.
Syntax:
ObjectInputStream in = new ObjectInputStream(new FileInputStream(FileName)); ClassName ReferenceVariable = (ClassName) in.readObject();
Example:
// Java code to demonstrate object// creation by deserializationimportjava.io.*;// Base classclassExampleimplementsjava.io.Serializable {publicintemp_id;publicString emp_name;// Default constructorpublicExample(intemp_id, String emp_name){this.emp_id = emp_id;this.emp_name = emp_name;}}// Driver classclassTest {publicstaticvoidmain(String[] args){Example object =newExample(1,"geeksforgeeks");String filename ="file1.ser";// Serializationtry{// Saving of object in a fileFileOutputStream file1 =newFileOutputStream(filename);ObjectOutputStream out =newObjectOutputStream(file1);// Method for serialization of objectout.writeObject(object);out.close();file1.close();System.out.println("Object has been serialized");}catch(IOException ex) {System.out.println("IOException is caught");}Example object1 =null;// Deserializationtry{// Reading object from a fileFileInputStream file1 =newFileInputStream(filename);ObjectInputStream in =newObjectInputStream(file1);// Method for deserialization of objectobject1 = (Example)in.readObject();in.close();file1.close();System.out.println("Object has been deserialized");System.out.println("Employee ID = "+ object1.emp_id);System.out.println("Employee Name = "+ object1.emp_name);}catch(IOException ex) {System.out.println("IOException is caught");}catch(ClassNotFoundException ex) {System.out.println("ClassNotFoundException is caught");}}}chevron_rightfilter_none - Classes and Objects in Java
- Understanding storage of static methods and static variables in Java
- Understanding Array IndexOutofbounds Exception in Java
- Understanding OutOfMemoryError Exception in Java
- Understanding for loops in Java
- Understanding public static void main(String[] args) in Java
- Understanding Object Cloning in Java with Examples
- Understanding threads on Producer Consumer Problem | Java
- Understanding "static" in "public static void main" in Java
- Java.util.Objects class in Java
- Understanding OOPs and Abstraction using Real World Scenario
- Private Constructors and Singleton Classes in Java
- Parent and Child classes having same data member in Java
- Passing and Returning Objects in Java
- equals() on String and StringBuffer objects in Java
- Understanding Encapsulation, Inheritance, Polymorphism, Abstraction in OOPs
- Class 8 RD Sharma Solutions - Chapter 15 Understanding Shapes Polygons - Exercise 15.1
- Access specifiers for classes or interfaces in Java
- Abstract Classes in Java
- Primitive Wrapper Classes are Immutable in Java
Differences between Objects and Classes

Attention reader! Donât stop learning now. Get hold of all the important Java and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready.
Recommended Posts:
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : nidhi_biet



