Java / Interface
Does interface uses all Object class methods?
Yes. Although interfaces does not inherit from Object class, an interface implicitly declares a public abstract member method corresponding to each public instance method declared in the Object class. These abstract members may be overridden by "interface implementing class" or its parent Object class.
Hope this answer helps.Thanks for reaching out to Javapedia.net. if you still need some additional information, let us know.
More Related questions...