InterviewSolution
Saved Bookmarks
| 1. |
Can You Identify The Error In The Below Code? Class A Implements A.b { Static Interface B { Void Methodb(); } } |
|
Answer» Cycle DETECTED. Any CLASS can not extend itself or it’s MEMBER types. Cycle detected. Any class can not extend itself or it’s member types. |
|