Name: diC59631 Date: 06/17/98
The compiler accepts abstract methods to be
private while such methods, for certain, cannot
be overridden by an actual implementation.
abstract class Class1
{
protected int i;
Class1()
{
i = 0;
}
protected void method1()
{
method2();
}
abstract private boolean method2();
}
(Review ID: 33787)
======================================================================
- duplicates
-
JDK-1266571 no error for abstract method with private, final, native, synchronized modifiers
-
- Closed
-