Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
public abstract class Two extends One
{
}

Class One is defined as

public abstract class One
{
} 
share|improve this question
11  
You could just try it to find out, but the answer is yes. – Mike Q Oct 7 '11 at 10:15
+1 Even though you can just try it yourself, I really don't mind that this question gets asked. There are probably a lot of questions in that category on stackoverflow. – krock Oct 7 '11 at 10:32

closed as not a real question by kleopatra, Duncan Jones, bmargulies, J. Steen, S.L. Barth Nov 15 '12 at 14:13

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Yes, and you cannot instantiate it either, of course.

share|improve this answer

Yes you can.

If you extend a class with an abstract class and not define or provide the implementation for the base class abstract methods then the child class extending it would automatically become abstract.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.