Science, asked by lucy3774, 1 year ago

Can abstract class implements another interface in java?

Answers

Answered by Anonymous
1
Two interfaces with same methodshaving same signature but different return types. Java does not support multiple inheritance but we can achieve effect of multiple inheritance using interfaces. In interfaces, a class can implement more than one interfacewhich can't be done through extends keyword.
Similar questions