CodeByAkram: Java
Showing posts with label Java. Show all posts
Showing posts with label Java. Show all posts

When to use interface and abstract class in Java

When to use interface and abstract class in Java?



This is very popular interview question for the beginners as well for experienced. So, Now lets talk about the interface and  abstract class.
What is interface?
 Interface is used when you just want to define the contract only and you don't know anything about implementation. (So here it is fully abstraction as you don't know anything.). That’s mean, in interface you can only define the methods and the implantation of these methods will be define somewhere else.

What is Abstract class?
Abstract class is used when you know something and depend upon other for you don’t know. By using abstract class, you can achieve partial abstraction.

So, Now lets understand the difference in Realtime example.
When to use Interface
Consider we want to start a service like "makemytrip.com" or "expedia.com",  where we are responsible for displaying the flights from various flight service company and place an order from customer.
Lets keep our service as simple as,

  1. Displaying flights available from vendors like "airasia", "british airways" and "emirates".
  2. Place and order for seat to respective vendor.
In this scenario, interface is useful or abstract class?
Remember, In this application, we don't own any flight. we are just a middle man/aggregator and our task is to first enquire "airasia", then enquire "british airways" and at last enquire "emirates" about the list of flights available and later if customer opts for booking then inform the respective flight vendor to do booking.


For this, first we need to tell "airasia", "british airways" and "emirates" to give us list of flights, internally how they are giving the list that we don't care.

  1. This means I only care for method name "getAllAvailableFlights()"

    "getAllAvailableFlights()" from "airasia" may have used SOAP service to return list of flights.
    "getAllAvailableFlights()" from "british airways" may have used REST service to return list of flights.
    "getAllAvailableFlights()" from "emirates" may have used CORBA service to return list of flights.

    but we don't care how it is internally implemented and what we care is the contract method "getAllAvailableFlights" that all the flight vendor should provide and return list of flights.

  1. Similarly, for booking I only care for method name "booking()" that all vendors should have, internally how this vendors are doing booking that I don't care.

To conclude: We know contract. 
So we can say that we know the contract that irrespective of who the Flight vendor is, you need "getAllAvailableFlights()" and "booking()" method from them to run our aggregator service.

In this situation, Interface is useful because we are not aware of the implementation of all the 2 methods required, and what we know is the contract methods that vendor(implementer) should provide. so due to this total abstraction and for defining the contract, interface is useful in this place.
Technically, we need to design our interface somewhat like below,
FlightOpeartions.java(Contract) 
interface FlightOpeartions{

 void getAllAvailableFlights();

 void booking(BookingObject bookingObj);

}
BookingObject.java 

class BookingObject{}
BritishAirways.java (Vendor 1) 

class BritishAirways implements FlightOpeartions{



 public void getAllAvailableFlights(){

           //get british airways flights in the way

           //they told us to fetch flight details.

 }



 public void booking(BookingObject flightDetails){ 

          //place booking order in a way British airways

          //told us to place order for seat.

 }



}
Emirates.java (Vendor 2) 

class Emirates implements FlightOpeartions{



 public void getAllAvailableFlights(){

         //get Emirates flights in the way

         //they told us to fetch flight details.

 }



 public void booking(BookingObject flightDetails){ 

         //place booking order in a way Emirates airways

         //told us to place order for seat.

 }

}

How Interface achieve Polymorphism.

Note:
Interface just speak about the contract capabilities and don't know anything about implementation.

Example: 
Interface can very well say that "I can get all available flights", "I can do booking" because they have that capability, but they don't know "How exactly to get all available flights", "How exactly to do booking" and this is the job of class that accepted Interface contract in other words it is the job of class that implements that interface.

Interface helps in achieving dynamic Polymorphism because it focus only on capabilities and don't care about implementation which implemented class MUST take care of as define in interface contract.
Interface very well knows what methods it is capable of calling, and it is sure that class that implements this interface definitely has given the body to those methods, so it blindly calls  

"interfaceReference.capableMethods()",  
(in our example: flightOperationsReference.getAllAvailableFlights())

It doesn't care, what object has been assigned to "interfaceReference", (it can be of any class that implemented it), but when interface calls "interfaceReference.capableMethods()",  "capableMethods()" method will definitely be called on class whose object has been assigned to "interfaceReference" and that is the contract that every implementer of interface should provide body to methods defined in interface.



When to use Abstract class
Scenario, 
Consider we want to start a service like Bulk SMS sender, where we take orders from various telecom vendors like Airtel, France Telecom, Vodafone etc.

For this, we don't have to setup your own infrastructure for sending SMS like Mobile towers but we need to take care of government rules like after 9PM, we should not send promotional SMS, we should also not send SMS to users registered under Do Not Disturb(DND) service etc. Remember, we need to take care of government rules for all the countries where we are sending SMS.

Note: for infrastructure like towers, we will be relying on vendor who is going to give us order.
Example, In case of,
Vodafone request us for bulk messaging, in that case we will use Vodafine towers to send SMS. 
Airtel request us for bulk messaging, in that case we will use Airtel towers to send SMS.
What our job is to manage Telecom Regulations for different countries where we are sending SMS. 

So what all methods we require would be somewhat like below,

public void eastablishConnectionWithYourTower(){

   //connect using vendor way.

   //we don't know how, candidate for abstract method

}



public void sendSMS(){

   eastablishConnectionWithYourTower();

   checkForDND();

   checkForTelecomRules(); 

   //sending SMS to numbers...numbers.

   destroyConnectionWithYourTower()

}



public void destroyConnectionWithYourTower(){

   //disconnect using vendor way.

   //we don't know how, candidate for abstract method

}



public void checkForDND(){

   //check for number present in DND.

}



public void checkForTelecomRules(){

   //Check for telecom rules.

}
Out of above 5 methods, 

  1. Methods we know is "sendSMS()", "checkForDND()", "checkForTelecomRules()".
  2. Methods we don't know is "eastablishConnectionWithYourTower()", "destroyConnectionWithYourTower()".
we know how to check government rules for sending SMS as that is what our job is but
we don't how to eastablish connection with tower and how to destroy connection with tower because this is purely customer specific, airtel has its own way, vodafone has its own way etc. 

So in the given scenario, we know some methods but there also exist some methods which are unknown and depends on customers.


In this case, what will be helpful, abstarct class or interface?


In this case, Abstract class will be helpful, because you know partial things like "checkForDND()", "checkForTelecomRules()" for sending sms to users but we don't know how to eastablishConnectionWithTower() and destroyConnectionWithTower() and need to depend on vendor specific way to connect and destroy connection from their towers.

Let's see how our class will look like,




abstract class SMSSender{

  

 abstract public void eastablishConnectionWithYourTower();

  

 public void sendSMS(){

  /*eastablishConnectionWithYourTower();

  checkForDND();

  checkForTelecomRules(); 

   

  sending SMS to numbers...numbers.*/

 }



 abstract public void destroyConnectionWithYourTower();



 public void checkForDND(){

  //check for number present in DND.

 }

 public void checkForTelecomRules(){

  //Check for telecom rules

 }

}





class Vodafone extends SMSSender{



 @Override

 public void eastablishConnectionWithYourTower() {

  //connecting using Vodafone way

 }



 @Override

 public void destroyConnectionWithYourTower() {

  //destroying connection using Vodafone way

 }

  

}



class Airtel extends SMSSender{



 @Override

 public void eastablishConnectionWithYourTower() {

  //connecting using Airtel way

 }



 @Override

 public void destroyConnectionWithYourTower() {

  //destroying connection using Airtel way

 }

  

}
Other differences between interface and abstract class in Java.

No
abstract class
interface
1
Abstract class can have both abstract methods (incomplele. methods without body) and non-abstract methods(complete. methods with body).
Interface can only have abstract methods till Java 7.
In Java 8, Interface can have non-abstract default and static methods.
2
Abstract class can extends only one class and can implements multiple interfaces.
Interface can only extends other interfaces.

 






What is Polymorphism in Java with example


What is Polymorphism in Java with example.

Polymorphism is one of the most important concept of OOPS that means "one object having many forms".

Polymorphism is a Greek word which means "Many Forms", Polymorphism = (Poly + Morphism) = Many + Forms.

 Lets understand above line in more details with example.

Every concept of OOPS also exist in Real Life, so for better understanding lets first understand real life example of Polymorphism.


Real Life example

There are many English words when used without context will have multiple meanings.
Example:

If I don't give you context and simply say word, you will not able to exactly tell what it is used for.

bear:
    • bear can be used to represent a mammal "The black bear". 
    • bear can also be used in context of pain like "I cannot bear his constant criticism".
Similarly,

close:
    • close can be used in context of opposite of far like "Please close the window".
    • close can also be used in context of opposite of open like "Please close the door".
So many words in English has multiple meanings that is "same word but multiple meanings".
Isn't it matching with our Polymorphism definition "same object many forms"!!!


In Java

Similarly in Java, there can be a situation where we need to write more than one methods with same name (because they all do the same job) but they behave differently based on the parameters supplied.

Lets take an example:


  1. getSum(int a, int b) { return a+b; } used to calculate the sum of two integer number.
  2. getSub(int a, int b, int c) { return a+b+c; } used to calculate the sum of three integer number.

If you look at above two method names "getSum", they both are doing same job of calculating sum of integer numbers, so given only name, you cannot say, whether method is used to calculate sum of two or three numbers. but you will definitely get a broad idea that method is used to calculate the sum.

Parameters supplied to the method will give the exact meaning to the method. whether it is used to calculate sum of two numbers or three numbers.

We can achieve Polymorphism in Java by,
  1. Method Overloading
  2. Method Overriding.


Another example of Polymorphism,
We use "System.out.println()" method and passed int, float, String, Object etc as a parameter like,
System.out.println(10) -> 10
System.out.println("hello") -> hello
System.out.println(50.5) -> 50.5
same method name println(), can sometime print integer, sometime float, sometime String etc.

Internally there are multiple println() method written as shown below,



What is Thread in Java

What is Thread in Java?


Java Thread is an independent path of execution within a program which can run in parallel with other existing Threads.

Now lets talk about Process.

A process is a self contained execution environment and it can be seen as a program. However a program itself contains multiple processes inside it. Java runtime environment runs as a single process which contains different classes and programs as processes.

So we can say that, thread can be light weight process because it require less resources and also multiple threads can share the same resource. Java provides built-in support for multi-threaded programming.

Let’s summarize  in points:

1. The main purpose of multi-threading is to provide simultaneous execution of two or more parts of a program. Each such part of a program called thread.

2. Threads are lightweight processes, they share the common memory space. 

3. In Multi threaded environment, programs that are benefited from multi-threading, utilize the maximum CPU time so that the idle time can be kept to minimum.

Now lets talk about the state of a thread. Thread can be in one of the following states:-

NEW – A thread that has not yet started is in this state.
RUNNABLE – A thread executing in the Java virtual machine is in this state.
BLOCKED – A thread that is blocked waiting for a monitor lock is in this state.
WAITING – A thread that is waiting indefinitely for another thread to perform a particular action is in this state.
TIMED_WAITING – A thread that is waiting for another thread to perform an action for up to a specified waiting time is in this state.
TERMINATED – A thread that has exited is in this state.
A thread can be in only one state at a given point in time.








Simple Deadlock Explanation

Deadlock Explanation with Example.


Deadlock means, it is a situation where 2 or more threads are blocked and waiting for each other.

Let's take an example, in the office we have shared printer and scanner where employees has ability to do scanning and printing.

1. Deepak has bunch of documents that it wants to print first and also want to take a scan later.
(Print and Scan)
2. Rohit has bunch of documents that it wants to scan first and also want to take a print later.
(Scan and Print)

Thread 1 ------ (Got Printer) ------ (Need to Scan) (Blocked)
Thread 2 -------(Got Scanner) -----(Need to Print) (Blocked)


Reverse Integer in Java.

Algorithm 


Reversing Integer is very easy, start collecting the digits from the back of the number until no digits is remaining.

How we will get the last digit of a number?
when a number is Mod by 10, we will get the last digit of a number. 
Example  int lastDigit = number % 10.

We just collected the last digit, so now we need to get the remaining number to work on except the last digit which we already worked on, how we will get the remaining number except last digit?
By dividing the number by 10. Example: int remainingNumber = number / 10.

We need to collect all the last digits we get in reverse order, how to do that?
int reversedNumber = reversedNumber * 10 + lastDigit;

Continue above steps in loop  until remaining number is 0.

Note: We may hit integer overflow when we do (reversedNumber * 10 + lastDigit), so make sure before executing that line we check for overflow.

1. reversedNumber * 10 can overflow, so check reversedNumber  > Integer.MAX_VALUE / 10, if yes then (reversedNumber * 10) will surely overflow.

2. reversedNumber * 10 + lastDigit
Adding the + lastDigit can also overflow, if reversedNumber is exactly equal to Integer.MAX_VALUE / 10 then we need to check the + lastDigit we add should be less that 7 (for positive number) because in Java, the integer ranges from -2,147,483,648 to +2,147,483,647 and greater than -8 in case negative number.