Difference between interface and abstract class with ex.

Answers were Sorted based on User's Feedback



Difference between interface and abstract class with ex...

Answer / aditya

Abstract Class :
1. Can have implemented(non-abstract) method
2. Can have any visibility public,protected,private


Interface :
1. All methods are non-implemented(abstract)
2. Only visibility is public or none
3. All variables should be static and final

Is This Answer Correct ?    17 Yes 0 No

Difference between interface and abstract class with ex...

Answer / sreenivas g

Abstract Class : If a class contains atleast one
non-concrete(not implemented) method, it is said to be
Abstract class. it should be defined with keyword abstract.
It is a combination of both implemented and non-implemented
methods.

Interface : By default all the methods in Interface are
abstract methods. All the methods are non-implemented in
interface.

Is This Answer Correct ?    18 Yes 2 No

Difference between interface and abstract class with ex...

Answer / janardhan

abstract class:-- abstract class contains abstract methods
and concreat methods,abstract class may have Zero(0)
abstract methods also, for example HttpServlet class is
best example for abstract class, HttpServlet class contains
Zero abstract methods, The SUN People declared HttpServlet
as abstract,B'ecz out side people unable to create object
for HttpServlet(abstract class)and due to security reasons
HttpServlet declared as abstract class.

If you are declared abstract methods in a abstract class,
we should provide the implementation in child classes.

we can't create Object for abstract class, we can create
refrence for abstract class.

In real-time, we can use abstract classes depends on
requirement only.

Interface:---

By default all the methods in Interface are public abstract
methods.Variables are by default public static final.
All the methods are non-implemented in interface and we
need to provide the implemantation for abstract methods in
interface implemented class(child class)

For example Servlet is a interface, if MyServlet class
implements Servlet, then we should provide the
implementation for Servlet interface methods like init
(),service(), destroy(),servletConfig(),etc..

EX:-- MyServlet implements Servlet{

init(){
........
........

}
service(){

........
...........

}
destroy(){

........
........

}
//we have some of the methods of Servlet interface ,those
//methods we need to implement here
}

Mostly In real time we need to use Interfaces.

for example :--

All business methods we need to declare in interface and we
need to provide the implementation for those business
methods in implemented class.

Main purpose of interface is :--

Reusability
maintainability

Example:--

public interface DaoInterface{

public abstract getDetails();
public abstract getProductId();
public abstract getProductName();
public abstract searchProduct();
public abstract editProduct();
.........
............
}

public class DaoClass implements DaoInterface{
public abstract getDetails();{

// we need to write our business logic here depends on
requirement.
}
public abstract getProductId();{
// we need to write our business logic here depends on
requirement.
}
public abstract getProductName();{
// we need to write our business logic here depends on
requirement.
}
public abstract searchProduct();{
// we need to write our business logic here depends on
requirement.
}
public abstract editProduct(); {
// we need to write our business logic here depends on
requirement.
}
}

Note:-- The above DaoInterface business methods any body
can implement their own way and write business logic
depends requirement.

Thanks

Jana

Is This Answer Correct ?    9 Yes 0 No

Difference between interface and abstract class with ex...

Answer / vinoth sing

abstract class contain both abstract and non abstract methods
vs
interface can have only abstract methods.

a class implementing a interface itself a abstract class.

eg for interface

interface shape2d
{
double getArea();
}

class circle implements shape2d
{
int radius;
public double getArea()
{
return math.pi*r*r;

}
circle(int radius)
{
this.radius=radius;
}
class circledemo
{

public static void main (string args[])
{
circle c= new circle(10);
system.out.println(c.getArea());
}

}

Is This Answer Correct ?    4 Yes 1 No

Post New Answer

More Core Java Interview Questions

what is synchronization and why is it important? : Java thread

0 Answers  


What is the symbol for line break?

0 Answers  


What are the advantages of encapsulation in java?

0 Answers  


Why Java is not pure Object Oriented language?

0 Answers  


Does garbage collection guarantee that a program will not run out of memory?

1 Answers  






Can constructor be synchronized?

0 Answers  


What is compareto?

0 Answers  


What is the method in java?

0 Answers  


What is the do while loop syntax?

0 Answers  


I need to know about complete topic in java's collections i with an examples

1 Answers   TCS,


What is a newline character in java?

0 Answers  


What is the use of arraylist in java?

0 Answers  


Categories