+ 1
How many times can a class extends and implements ? I mean like that : class A extenda()implements() ?
2 Antworten
+ 4
Extend (inherit): 1
Implement: relatively ∞
class Example extends Instance implements Serializable, AutoCloseable {
}
+ 2
that helped me much , thank you