A human is a very complex organism. And it's hard to program one. But we will try, at least to some degree. Here we have a Human class and interfaces. You need to add as many interfaces to the Human class as possible, but be sure that it doesn't become an abstract class. Don't add any methods.
Interfaces for the Human class
- 3
Locked
Comments (3)
- Popular
- New
- Old
You must be signed in to leave a comment
Sam Jin
25 April 2019, 05:07
if two interfaces have the same method names and a class implements both of them how do we know which method will take precedence?
e.g. human implements employee and secretary, both of which have the workLazily() method
if a human was to call workLazily which one would be called?
+4
Roman
25 April 2019, 06:21
Interface methods have no implementation. The workLazily () method of the Human class will be called.
+5
Sam Jin
27 April 2019, 05:42
ahhh thanks Roman I think i get it
0