Why abstract class is not create the object?

Showing Answers 1 - 9 of 9 Answers

kalyankarri

  • Dec 26th, 2014
 

abstract class is used for hiding,only variable and methods definition is done.

  Was this answer useful?  Yes

Akhil behara

  • Aug 13th, 2015
 

Personally I very much dislike this term (except of course when referring to the book of the same name). There is "Java SE" which is a perfectly valid name for "Java thats not EE or ME". "Core Java" is never really defined anywhere, except in the heads of people who make up their mind of what it could be

  Was this answer useful?  Yes

Anil K Muraleedharan

  • Aug 15th, 2015
 

Abstract classses are not complete by itself to be instantiated. There are some methods in that are not implemented. Hence you have to inherit it before using it. Even if you have implemented all methods in a class, if you put the keyword abstract, the class is deemed as abstract class.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions