Object Oriented Programming in Java
Object Oriented Programming in Java
Java Classes...
Java is an object-oriented programming language.Everything in Java is associated with
classes and objects, along with its attributes and methods.
Java Objects...
In Java, an object is created from a class.
Java Constructors
In Java, a constructor is a block of codes similar to the method. It is called when an instance of the
class is created.
At the time of calling constructor, memory for the object is allocated in the memory. It is a special type
of method which is used to initialize the object.
Every time an object is created using the new() keyword, at least one constructor is called.
Rules for creating constructor :Constructor name must be the same as its class name.
A Constructor must have no explicit return type
A Java constructor cannot be abstract, static, final, and synchronized.
Default Constructor
A constructor is called "Default Constructor" when it doesn’t have any parameter.
Rule: If there is no constructor in a class, then compiler automatically creates a default constructor.
Syntax :<class_name>(){}
Parameterized Constructor
A constructor which has a specific number of parameters.It is used to provide different values to
distinct objects
Method Overloading
Multiple methods in a class, can have the same name with different parameters
To perform only one operation, having same name of the methods
increases the readability of the program.
For Example : To perform addition of the given numbers but there can beany number of
arguments, if you write the method such as func1(int, int)for two parameters, and func2(int,
int, int) for three parameters then it maybe difficult for you as well as other programmers to
understand the behavior of the method because its name differs.
Advantage : Increases the readability of the program.
Ways to Overload :
By changing number of arguments
By changing the data type
Constructor Overloading
In Java, a constructor is just like a method but without return type. It can also be overloaded
like Java methods. It is a technique of having more than one constructor with different
parameter lists.
They are arranged in a way that each constructor performs a different task. They are
differentiated by the compiler by the number of parameters inthe list and their types.
Java Modifiers
Modifiers are keywords used to change their meanings. Java has a wide variety of modifiers,
including the following:
Access Modifiers : to set access levels for classes, variables, methods and constructors.
The four access levels are :
default: Visible to the package
private: Visible to the class only
public: Visible to the world.
protected: Visible to the package and all subclasses.
Non Access Modifiers :static: used for creating class methods and variables.
final: used for finalizing the implementations of classes, methods, variables.
abstract: used for creating abstract classes and methods.
Synchronized and volatile modifiers, which are used for threads.
Java Abstraction
It is the quality of dealing with ideas rather than events.
For Example : Consider E-mail, complex details such as what happens as soon as you send
an e-mail, the protocol your e-mail server uses are hidden from the user. Therefore, to send
an e-mail, just need to type the content, mention the address of the receiver, and click send.
In OOP :
Abstraction is a process of hiding the implementation details from the user, only the
functionality will be provided to the user. In other words, User will have the information on
what the object does instead of how it does it. In Java, Abstraction is achieved using
Abstract classes and Interfaces.
Abstract Class
A class which contains the abstract keyword in its declaration is known as Abstract class.
Abstract classes may or may not contain abstract methods, i.e., methods without body
( public void get(); )But, if a class has at least one abstract method, then the class must be
declared abstract. If a class is declared abstract, it cannot be instantiated. To use an
abstract class, you have to inherit it from another class, provide implementations to the
abstract methods in it. If you inherit an abstract class, you have to provide implementations
to all the abstract methods in it. The abstract keyword is anon-access modifier, used for
classes and methods
Java Interfaces
Another way to achieve abstraction in Java, is with interfaces. An interface s a completely
"abstract class" that is used to group related methods with empty bodies
An interface is a reference type. It is similar to class. It is a collection of abstract methods. A
class implements an interface, thereby inheriting the abstract methods of the interface. It is
similar to writing a class. But a class describes the attributes and behaviors of an object. And
an interface contains behaviors that a class implements.