I read in a book (Programmez en Java 5 et 6 from Claude Delonne in French) that in Java 5 and its previous versions, if you have an abstract method in a class, then this class is abstract, and it is not necessary to mention the keyword abstract
in front of the class.
Is this statement true? I tried to find the Java SE 5 specification, but it is not available.
source
share