InterviewSolution
Saved Bookmarks
| 1. |
What Will Happen If A Class Extends Two Interfaces And They Both Have A Method With Same Name And Signature? |
|
Answer» In this case, a conflict will arise because the compiler will not ABLE to link a method CALL DUE to ambiguity. You will get a compile time error in JAVA. In this case, a conflict will arise because the compiler will not able to link a method call due to ambiguity. You will get a compile time error in Java. |
|