Home Answers Viewqa Java-Beginners Using abstract class and Interface

 
 


Akhileshwar
Using abstract class and Interface
1 Answer(s)      5 years and 3 months ago
Posted in : Java Beginners

when to use abstract class and when to use interface? give me answer with real time scenario?

View Answers

February 28, 2008 at 7:44 PM


Hello,

When to Use Interfaces
Two Important Differences Between Interfaces and Abstract Classes

* Interfaces provide a form of multiple inheritance. A class can extend only one other class.
* Interfaces are limited to public methods and constants with no implementation. Abstract classes can have a partial implementation, protected parts, static methods, etc.

Interface or Abstract Class

* These two differences usually direct the choice.
* If multiple inheritance is important or even useful interfaces are used.
* Abstract class lets you define some or all of the implementation.
* Any major class you expect to be extended should be an implementation of an interface.

Thanks









Related Pages:
Interface and Abstract class
interface should be implemented using keyword 'implements'; A Java abstract class should... and Abstract class? Give some example   Difference Between Interface and Abstract Class 1)Main difference is methods of a Java interface are implicitly
Abstract and Interface
abstract class should be extended using keyword 'extends'. 5)An interface can... for using interface? Why we use interface instead of abstract? What... Interface and Abstract Class 1)Main difference is methods of a Java interface
abstract class and interface - Java Beginners
? when should we use an abstract class? when should we use interface instead...() { System.out.println ("Moo! Moo!"); } } Why not declare an abstract class as an interface.... For difference between interface and abstract class visit to : http
Interface vs abstract class
Interface vs abstract class  Hai, Is there any possible to defining abstract methods in Interface
Interface and Abstract class
Interface and Abstract class  hello,, Can some body tell me what is the difference between an Interface and an Abstract class?   hi, Very Good Question Abstract class is a class which contain one or more abstract
Uses of abstract class & interface - Java Beginners
Uses of abstract class & interface  Dear sir, I'm new to java. I knew the basic concepts of interface and the abstract class. But i dont... classes from different types of hierarchy. Abstract Class: Any class
Abstract class and interface in Java
Abstract class and interface in Java  What is the difference between abstract class and interfaces in Java?   Differences between an interface and an abstract class: At the same time multiple interfaces can
Using Abstract Class
Using Abstract Class      ... class. This class must be inherited. Unlike interface the abstract class may... method should be abstract. We can't instantiate the object of the abstract class
Interface Vs Abstract Class
Interface Vs Abstract Class       There are three main differences between an interface and an abstract..., an interface is equivalent to a fully abstract class (a class with only public abstract
abstract class
abstract class   Explain the concept of abstract class and it?s use with a sample program.   Java Abstract Class An abstract class is a class that is declared by using the abstract keyword. It may or may not have
interface
variables.Any class can implement(inherit)the interface and make use... is achieved by using the interface (by implementing more than one interface at a time...interface  what the use of interface?   An interface is one
Abstract class and Interface - Java Magazine
Abstract class and Interface  Dear Sir, Please anyone help me........I wane exact difference between Abstract class and Interface.what... abstract class AbstractExample { public AbstractExample(){ System.out.println
What are the difference between abstract class and interface?
What are the difference between abstract class and interface?  What are the difference between abstract class and interface
Java Abstract Class
Java Abstract Class       An abstract class is a class that is declared by using the abstract keyword...;  --or-- Java provides a special type of class called an abstract class
Abstract class,Abstract methods and classes
that have the empty implementation. All the methods in any interface are abstract...(); Abstract Class In java programming language, abstract classes... to implement the methods inherited from the abstract class (base class
where exactly we use interface and where abstract class?
where exactly we use interface and where abstract class?  what is the use of interface over abstract class? and where we should use interface and where abstract class
Abstract and Interface
Abstract and Interface  what is the difference between Abstract and Interface accurateatly
Java Abstract Class Example
using 'abstract' keyword. An abstract class may contain abstract...Java Abstract Class Example In this section we will read about the Abstract class. Abstract class in Java is a class which is created for abstracting
Abstract Class in Java
Abstract class in Java is a class that is declared using abstract keyword. It cannot be instantiated but can be extended into subclass. Abstract class cannot be instantiated means that new instances of an abstract class cannot
Real Time Example Interface and Abstract Class - Java Beginners
Real Time Example Interface and Abstract Class  Hi Friends, can u give me Real Time example for interface and abstract class.(With Banking Example
Interface
Interface  I need to implement the interface without overriding its method and also don't use abstract class for this. How to do
Why does Java provide both abstract class as well as interface
Why does Java provide both abstract class as well as interface  why does java have both abstract class as well as interface? what is the need or importance of having both
Explain final class, abstract class and super class.
. An abstract class is a class that is declared by using the abstract keyword. It may...Explain final class, abstract class and super class.  Explain final class, abstract class and super class.   Explain final class, abstract
Interface in java with example
of a class. Interface is a collection of abstract methods. Interface has only static constant and abstract method. We can only implement a class and extended... all method in interface abstract and public. Multiple inheritance allows
Interface
class a.Rectangle that uses the interface b.Circle that uses the interface and abstract class   interface ShapeInterface{ int l=0,b=0; public... methods and one constant and an abstract class named ShapeAbstract that has two
Interface
class a.Rectangle that uses the interface b.Circle that uses the interface and abstract class   interface ShapeInterface{ int l=0,b=0; public... methods and one constant and an abstract class named ShapeAbstract that has two
abstract class and overriding - Java Beginners
abstract class and overriding  what is the difference between abstract class and overriding? Interface? Give some example program?   Hi..._value(); } } Difference between abstract class and interface
Interface
for Interface in java? and want to know why they used interface instead of multiple inheritance? Thanks in advance   An interface is one which has abstract... and implements its methods (which are declared in interface) int the class. interface Ex
interface
interface  can we extend interface?   Hi Friend, Yes an interface can be extended by other interface like using extends keyword interface A{ } interface B extends A{ } For Example: interface IntefaceA { void
Abstract class
Abstract class  Can an abstract class be final
Abstract class
Abstract class  what is an Abstract class
abstract class
abstract class  Can there be an abstract class with no abstract methods
Interfaces and Abstract Classes - Development process
Interface and Abstract Classes?  Hi Friend, Interface: Java does... by using the interface. Interfaces are useful when you do not want classes.... It relate classes from different types of hierarchy. Abstract Class: Any class
why we use abstract class in java?
why we use abstract class in java?  what is the the purpose of abstract class.Give example when to use abstract and when use interface
Abstract class
Abstract class  j   An Abstract class is a base class which... with an abstract keyword. For more information, visit the following links: http://www.roseindia.net/help/java/a/java-abstract-class.shtml http://www.roseindia.net/java
abstract class
abstract class  abstract class AbstractClass{ } is possible and compile the class or any compile time error occur tell me the answer Blockquote
abstract class
abstract class  what is abstract class .why we use it or what is the need of this class?   Abstract class is like base class which contains abstract method and cannot instantiated.   Please go through
Abstract class
Abstract class  Calendar cal=Calendar.getInstance() We know that Calendar is an abstract class so it can't be instantiated. So how we can say that cal is an instance of Calendar??? Beginner Question I suppose. Thanks in advace
Class or Interface
Java NotesClass or Interface Declare variables as class or interface type... the methods defined in the List interface, it would be better to do the following... any methods that aren't in the List interface. The advantage
Marker Interface,Java Marker Interface
   Interface    Abstract Class... will have to implement this interface by any class.. In Abstract classes we can...; and "Why use Marker Interface?" and "difference between abstract
What is Abstract classes in Java?
purpose of using Abstract class as to function as a base for subclasses...What is Abstract classes in Java?  What is Abstrack class in Java... class to declare some common characteristics of subclasses.This Abstract class
code for abstract class
code for abstract class  code for abstract class
Abstract class and abstract method
be private because it defined in the other class. An abstract methods cannot... points about abstract methods are as following An abstract class may or may... also. An abstract class cannot be instantiated so it need to be a sub class
The interface keyword
to implement an interface by a class. Interfaces in java are abstract means they can.... An interface in java includes only abstract methods i.e. methods have signatures...). An abstract type in java defines that it must be implemented by any class to make
What is an abstract class?
What is an abstract class?  What is an abstract class
Java abstract class
Java abstract class  Can an abstract class be final
Why Abstract Class?
Why Abstract Class?  What is the use of Abstract Class if it has Zero Abstract methods
Why Abstract Class?
Why Abstract Class?  What is the use of Abstract Class if it has Zero Abstract methods
variables and methods declared in abstract class is abstract or not
variables and methods declared in abstract class is abstract or not  variables and methods declared in abstract class is abstract
Interface in Java
; Features    Interface    Abstract Class... then we will have to implement this interface by any class.. In Abstract...; and "Why to use Marker Interface?" and "difference between abstract

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.