posted 22 years ago
You can compile an interface method (in jdk 1.3) with the abstract modifier without error.
To quote Mughal:
"Interfaces just specify the method prototypes and not the implementation; they are, by their nature, implicitly abstract, i.e. they cannot be instantiated. Thus specifying an interface with the keyword abstract is not appropriate, and should be omitted."