javascript
Brief description  about Online courses   join in Online courses
View Shashidhara Sharma U S 's Profile

Interfaces

What if a class that implements two interfaces containing same method name,argument and return type.
eg:
interface a{
abstract void show();
}
interface b{
abstract void show();
}
class c implements a,b{
//if i define show method here which show method will be //implemented? please help
}
Asked by Shashidhara Sharma U S | Nov 6, 2012 |  Reply now
Replies (0)