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...

Can i have abstract class with no abstract methods?

Answer Posted / sitaram

yes,please find the below example.

abstract class AbstractClass1 {
public void method1(){
System.out.println("inside method1...");
}
}
class AbstractClass2 extends AbstractClass1{
public void method2(){
System.out.println("inside method2...");
}
}
public class AbstractDemo {
public static void main(String[] args) {
AbstractClass2 a = new AbstractClass2();
a.method1();
a.method2();
}
}

Is This Answer Correct ?    6 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When should I use singleton?

975


What is java’s garbage collected heap?

928


Can we declare a class as static?

1053


what is the messsage u r going to get from an objectoriented programing?

2063


What do you know about java?

906


what happens when a thread cannot acquire a lock on an object? : Java thread

1028


Why can't we override private static methods?

935


what is instanceof operator used in java?

988


What is the difference between checked exception and unchecked exception?

971


How do I run java on windows?

1113


What are the difference between composition and inheritance in java?

980


What are the differences between getting and load method?

1097


Explain the differences between abstraction and encapsulation?

1012


Can we override the private methods?

952


What is the SimpleTimeZone class?

2224