×

Classes and Objects in Java Example Programs

Classes and Objects in Java Example Programs

Java is an Object-Oriented programming language, i.e., everything in Java is associated with objects and objects are associated with classes. The classes and objects in Java examples programs teach us about classes and objects and their usages.

What are Classes and Objects?

A set of instructions or blueprint required to create an object is called a class. Classes are the most fundamental elements of Object-Oriented programming. Classes in Java relates to real-life stuff and make Object-Oriented programming easy yet interesting.

The instantiation of a class is called an object. In other words, that element of Object-Orientated programming, which obeys the set of instructions or blueprint defined by a class called is an object.

Class is more like a concept that we can understand but cannot touch or see it. An object implements that concept and becomes a real-time entity. Thus, we can see or touch an object. For example, A woody plant that has roots, elongated stems, leaves, a lot of twigs is called a tree. Here, leaves, roots, elongated stems, etc., are concepts or blueprints. Hence, a tree is a class. A mango tree or a guava tree is one of the objects of the class tree. This is because a mango or guava tree implements all the concepts given in the definition of a tree. Whenever we see a tree, it is basically a type of tree, i.e., an object of the class tree.

Programmatically, a Java class contains variables, methods and their definitions, and data-structures. In order to use the variables, methods or data structures of the class, we create objects. Since a class is just a blueprint, it does not occupy any memory, whereas objects occupy memory. Note that a class can have one or more than one object.

How to create a Java class?

The keyword class is used to create a class in Java. After the keyword class, the name of the class is written. For example, the code to create a class whose name is ABC and contains a variable var of integer type that stores the number 5 is:

FileName: ABC.java

 public class ABC
{
               int var = 5;
} 

The keyword public is the access specifier.

How to create an object of a Java class?

To create the object, mention the class name, then the object name, followed by the keyword new.

FileName: ABC.java

 public class ABC
{
               int var = 5;
               public static void main(String argvs[])
               {
                               ABC ob = new ABC(); // creating an object of class ABC
                               System.out.println( ob.var );
               }
} 

Output:

5

Explanation: ob is the name or reference of the object, and ob is referring to the object creating by the keyword new. In other words, the new keyword is responsible for the instantiation of the class ABC. The new keyword allocates memory for the object and returns the reference of it. This reference is stored in ob.   

Creating an anonymous object

In the previous example, we have seen that ob is the name/ reference of the object. However, we can also create an anonymous object in Java. An object in Java that has no name or reference is called an anonymous object.

FileName: ABC.java

 public class ABC
{
               int var = 5;
               public static void main(String argvs[])
               {
                               // printing the value contained in var using an anonymous object
                               System.out.println( (new ABC()).var );
               }
} 

Output:

5

Explanation: Inside the print statement, we have created the anonymous object               ( new ABC()). Using the anonymous object, we are accessing the value of the variable var. The drawback of anonymous objects is; it can be used only once. Consider the following Java program. This program will print the value of the variable var twice.

FileName: ABC.java

 public class ABC
{
               int var = 5;
               public static void main(String argvs[])
               {
                               // Printing the value contained in var using an anonymous object
                               System.out.println( (new ABC()).var );
                               // Printing the value of var again using another anonymous object
                               System.out.println( (new ABC()).var );
               }
} 

Output:

 5
5 

Explanation: In the code, we have created two anonymous objects for displaying the value of the variable var two times. This is because a reference or name is required to use a Java object more than once. In the case of an object having a reference, we do not need to create two objects. Using the reference, we can display the value of variable var twice. The following code snippet does the same.

 public static void main(String argvs[])
{
               ABC ob = new ABC(); // creating an object having reference ob.
               System.out.println( ob.var );
               System.out.println( ob.var );
} 

Creating Multiple Objects

Let us observe how we can create multiple objects of a class in Java.

FileName: XYZ.java

 public class XYZ
{
               void foo()
               {
                   System.out.println("Inside the method foo. ");
               }
               public static void main(String argvs[])
               {
                              // Creating two objects of the class XYZ
                               XYZ obj1 = new XYZ();
                               XYZ obj2 = new XYZ();
                               // calling the method foo()
                               obj1.foo();
                               obj2.foo();
               }
} 

Output:

 Inside the method foo.
Inside the method foo. 

Explanation: In the code, we have created two objects, obj1 and obj2, of the class XYZ. Then, obj1 and obj2 are calling the method foo() separately. Since we have created two objects, there will be two copies of the class XYZ. One is assigned to obj1, and another is assigned to obj2. Therefore, changes done by obj1 does not affect changes done by obj2 (exception: class attributes and methods). Let us understand with the help of an example.

FileName: XYZ1.java

 public class XYZ1
{
               int x;
               public static void main(String argvs[])
               {
                              // Creating two objects of the class XYZ
                               XYZ1 obj1 = new XYZ1();
                               XYZ1 obj2 = new XYZ1();
                               // assigning different values of x for obj1 and obj2
                               obj1.x = 1;
                               obj2.x = 2;
                               // Printing the value of x for obj1 and obj2
                               System.out.println( obj1.x );
                               System.out.println( obj2.x );
               }
} 

Output:

 1
2 

Explanation: We are creating two objects of the class XYZ1. Therefore, two copies of the variable x are created: one for obj1 and another for obj2. For obj1, the variable x contains the value 1. For obj2, x contains the value 2 and the same is displayed on the console.

Creating Multiple Classes

Not only multiple objects, but we can also create multiple classes in Java. Consider the following example.

FileName: Main.java

 class XYZ
{
    int x;
}
public class Main
{
               // main method   
               public static void main(String argvs[])
               {
                              // Creating an object of the class XYZ
                               XYZ obj1 = new XYZ();
                               obj1.x = 1; // accessing the variable x and assigning value 1
                               System.out.println( obj1.x );
               }
} 

Output:

1

Explanation: The class XYZ has the variable x. Another class, Main, has the main method. Inside the main method, we have created an object of the class XYZ to access the variable x. Note that a Java program can have multiple classes, objects, methods, and variables. Along with x, we can even create another variable, y, or we can create different methods in the class XYZ. In Java projects, we always have different classes containing different variables and methods.


Related Topics

Read the XLSX file in Java

Excel files contain cells; reading an excel file in Java differs from reading a word file. JDK doesn't have a direct API that can read or write Word or Excel...

3 minutes read.

Applet Life Cycle in Java

In this article, we are going to acknowledge you about what a applet is, what is its life cycle and stages in life cycle, along with the syntax and example...

4 minutes read.

Java Append Data to File

When writing data to a file using the classes within the java.io package, its file will often be overwritten, meaning that any existing data will be removed and new data...

4 minutes read.

Differences between Lock and Monitor in Java Concurrency

In this tutorial, we will discuss the overview of Lock and Monitor and the differences between them. Introduction Java Concurrency is the ability to perform specific tasks at a time parallelly. The...

4 minutes read.

Diffie Hellman Algorithm in Java

In this section, you will be acknowledged about Diffie Hellman algorithm clearly step wise along with an example and also an example program. Diffie Hellman Algorithm One of the most significant algorithms...

3 minutes read.

Brilliant Number in Java

It is a number N that is made up of two prime numbers that have the same number of digits and is called a brilliant number. Several/Some of the brilliant Numbers...

3 minutes read.

Java Read File to String

There are different ways to deal with forming and examining a text record. This is normal while dealing with various applications. There are different ways to deal with looking at a...

6 minutes read.

Difference between String Tokenizer and split Method in Java

Introduction Today, let us understand the difference between String Tokenizer and Split Method. First, let us learn about the String Tokenizer and Split method individually and then know about their differences String...

7 minutes read.

How to run Java Program in Command Prompt

How to run Java Program in Command Prompt In this section, we will learn how to write, save, compile, and execute or run a Java program in the Command Prompt. Note: One...

3 minutes read.

Difference between throw and throws in java

This article shows you the core difference between “throw” and “throws”keywords in Java programming language.The throw keyword tells Java you want another part of the code to deal withthe exception,...

2 minutes read.

How to set path in Java

To make programs that can run on our systems, we need to install programming language-related software in our systems. Different programming languages require different types of software, aka IDEs (Integrated Development...

5 minutes read.

Java String toLowerCase() methods

Java String toLowerCase() method is used to convert all the characters of the String into lower case. Syntax: public String toLowerCase()              public String toLowerCase(Locale locale) Returns: It returns Lower...

1 minute read.

Bellman Ford Algorithm in Java

Numerous algorithms have been used in dynamic programming to determine the shortest path inside a graph. Among them are Floyd, all-pair shortest path problem, Breadth First Search, Depth First Search,...

6 minutes read.

How to Update Java

As we all know that java can be installed in all operating systems like windows, Linux, macOS. We are available with the java 17 and java 18 versions in the...

3 minutes read.

How to use scanner in Java

Scanner class in Java is the part of java.util package. Java programming language has various ways to read input from the user, Scanner class is one of the classes to...

5 minutes read.

Add numbers represented by Linked Lists in Java

For calculating the sum of the two numbers that are represented by a linked list, and then store the result in a new linked list. A linked list's head node...

7 minutes read.

How to generate random numbers in Java

Random numbers, also known as fake numbers, are actually a part of a very large sequence, so they are called random numbers. In a defined set of numbers, every number...

6 minutes read.

Java Math negateExact() Method

The negateExact() method of Math class returns the negation for the specified argument, throwing an exception if the result overflows an int or a long. Syntax: public static int negateExact (int a)public...

1 minute read.

Bouncy Number in Java

We will define bouncy numbers in this section and write Java programmes to determine whether a specific number is bouncy. Java coding exams and academic assignments usually inquire about the...

3 minutes read.

Java Password Generator

Generally, we must create a strong password for security reasons. In Java, there are numerous strategies for creating secure passwords. We will learn how to create a strong password in...

4 minutes read.