Extends keyword

Can you use the "extends" keyword on multiple classes. For something like this: public class LeaderBlob extends Blob and FollowerBlob. Can something like that be done?
[174 byte] By [telk02a] at [2007-10-2 18:25:47]
# 1
Yes and no.A class cannot extend multiple classes (multiple inheritence)An interface can extend multiple interfaces.Multiple interfaces are separated by commas:interface X extends Y,Z
IanSchneidera at 2007-7-13 19:46:50 > top of Java-index,Java Essentials,New To Java...
# 2
This was just asked here. http://forum.java.sun.com/thread.jspa?threadID=730335If you have more questions, you might want to continue in that thread, so that there will be one coherent discussion.
jverda at 2007-7-13 19:46:50 > top of Java-index,Java Essentials,New To Java...