Compilation error : Interface expected here

Can interface extend abstract class?I tried but got the following error:Interface extended hereCan anyone help plz.
[143 byte] By [java_guidancea] at [2007-11-27 4:55:44]
# 1
> Can interface extend abstract class?No.
hiwaa at 2007-7-12 10:10:45 > top of Java-index,Java Essentials,New To Java...
# 2

A class which extends the abstract class should provide the defnition for the abstract methods declared in the abstract class.

Interface declares only a function declaration not definition of the methods.

look at the following

If interface extends abstract class, how will it provide defintion for the abstract methods?

AnanSmritia at 2007-7-12 10:10:45 > top of Java-index,Java Essentials,New To Java...