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

I Have a class abstract with one abstract method, so that
method should override in the subclass, but i dont want to
override, if i am not override what will happen? If
compilation will occur then i dont want to give compilation
error, then what we need to do???
See the sample program.
public abstract class AbstractExample {
public abstract void sampleMethod();
}
public class AbstractExampleImple extends AbstractExample {

}

Answer Posted / shreya tanavade

if you dont want to override the abstract method i.e. SampleMethod ,then you must declare the subclass as ABSTRACT..i.e.declare....public declare class AbstractExampleImple ...otherwise it wuld throw compilation error

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When is the finalize() called?

1232


Can we declare a class as static?

1144


Explain differences between collection api and stream api?

1236


What is operator overloading. Is it is supported in java?

1092


Can I use % with real numbers?

1078


Can we cast any other type to boolean type with type casting?

1004


How strings are created in java?

1088


What is the use of join method?

1086


What is struts in java?

1091


Difference between static binding and dynamic binding?

1183


Can you tell me range of byte?

1056


When is the finalize() called? What is the purpose of finalization?

1141


How we can run a jar file through command prompt in java?

1015


Add a value x to array from index l to r where 0 <= l <= r <= n-1

1133


Can we sort arraylist in java?

1044