4) Object and class
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.
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:
Save Java Program
Syntax: Filename.java
Example: Test.java
Compile and Execute Java Code
To compile: javac Test.java
To execute: java Test
Output
Hello World
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.
Run in IDE:
Output :
Java Execution :
Java bytecode is the end product which is executed by JVM.
What if my java source code contains more than class definitions and all are to be executed ?
An executable Java class, when handed over to the JVM, starts its execution at a particular point in the class—the main method. The JVM starts executing the code that’s defined in the main method. You can’t hand over a non-executable Java class (class without a main method) to the JVM and ask it to execute it. In this case, the JVM won’t know which method to execute because no entry point is marked.
Main Method:
The first requirement in creating an executable Java application is to create a class with a method whose signature (name and method arguments) matches the main method, defined as follows:
This main method should comply with the following rules:
The method must be marked as a public method.
The method must be marked as a static method.
The name of the method must be main.
The return type of this method must be void.
The method must accept a method argument of a String array or a variable argument (varargs) of type String.
Guess the Output:
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
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:
<Clsname> objname = new <clsname ()>
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:
It allocates sufficient amount of memory space for the data members of the class.
It takes an address of the class and stored in the left hand side variable of syntax 1
Syntax 2 for defining an OBJECT:
<Clsname> objname; //object declaration
Objname = new <clsname ()>; //object refrencing
Example 3:
Output:
eid=1020
eName=Mohit
eid=1020
eName=Mohit
Example: 4
Output:
eid=747
eName=Mohit
eid=856
eName=Rohit
Difference between Class and Object
Class
Object
1
Class is a container which collection of variables and methods.
object is an instance of class
2
No memory is allocated at the time of declaration
Sufficient memory space will be allocated for all the variables of class at the time of declaration.
3
One class definition should exist only once in the program.
For one class multiple objects can be created.
Last updated