Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is difference between abstract and interface?
can i give real time example for the two topics?

Answer Posted / srinu

interface:interface contain only undefined methods

Abstract: Abstract class contain some undefined methods 0r
some defined methods or all defined methods.

Ex: Real time Example
interface Father
{
public void studyDaily();
public void dailyGotoCollege();
}
Abstrct class Son implements Father
{
public Void studyDaily();---->But his son didnot Study
daily he does n't interet Daily

public void dailyGotoCollege()
{
System.out.println("yes Father I go to college");
}
}

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain implementation and how is it different from conversion?

1021


Why do we create public static method in java?

1052


What is a “stateless” protocol ?

944


How to write custom exception in java?

1018


What is hash code collision?

1010


What is the use of beaninfo?

989


List the interfaces which extends collection interface?

897


If try block is successfully executed, Then Is Finally block executed?

1043


What is protected in java?

956


When is the finalize() called?

1133


How is it possible for two string objects with identical values not to be equal under the == operator?

933


Is it possible to cast an int value into a byte variable? What would happen if the value of int is larger than byte?

910


What is the applet security manager, and what does it provide?

957


How do we access static members in java?

1070


What is the original name of java?

1021