OOPS question?

Hi,I new to java. My question is which OOPS concepts is dosen't support java.
[92 byte] By [ggopia] at [2007-10-3 11:32:47]
# 1
It seems that you should learn morebout those concepts.I suppose that book Thinking in javailluminates it elaborately.
fishleonga at 2007-7-15 13:59:39 > top of Java-index,Java Essentials,New To Java...
# 2
hi im raghuram reddymultiple inheritance is not supported by java.why because it leads to confusion to the programmer.so javasoft has reduced the complexity by eliminating multiple inheritance. similarly pointers also but pointers are not in oops
raghuramg_reddya at 2007-7-15 13:59:39 > top of Java-index,Java Essentials,New To Java...
# 3

> hi im raghuram reddy

> multiple inheritance is not supported by java.why

> because it leads to

> confusion to the programmer.so javasoft has reduced

> the complexity by eliminating multiple inheritance.

>similarly pointers also but pointers are not in oops

does the following code not use multiple inheritance?

public class Person implements Persistable, Auditable {

/// methods here

}

it has three supertypes: Object, Persistable and Auditable. it inherits interfaces from three different types

georgemca at 2007-7-15 13:59:39 > top of Java-index,Java Essentials,New To Java...
# 4

> > confusion to the programmer.so javasoft has reduced

> > the complexity by eliminating multiple inheritance.

> > similarly pointers also but pointers are not in oops

>

> does the following code not use multiple inheritance?

He wasn磘 talking about Sun Microsystem磗 Java, but javasoft磗 Java.

Do pay attention George!

; )

prometheuzza at 2007-7-15 13:59:39 > top of Java-index,Java Essentials,New To Java...
# 5

> > ...

> > it has three supertypes: Object, Persistable and

> > Auditable. it inherits interfaces from three

> > different types

>

> He wasn磘 talking about Sun Microsystem磗 Java, but

> javasoft磗 Java.

> Do pay attention George!

> ; )

doh! *slaps forehead and donates 10 duke dollars to the Fortran Programmers Benevolent Fund*

georgemca at 2007-7-15 13:59:39 > top of Java-index,Java Essentials,New To Java...