Posts by Cláudio Henrique • 33 points
1 post
-
3
votes1
answer56
viewsQ: How to make an interface method receive any object (Object type) as parameter?
I’m studying polymorphism now, and I’m not getting it. Given the interface: public interface View { public boolean existe(Object obj); } I have this method, which I would like to be implemented from…