How can I implement an interface AND extend a class to the same class?
This doesn't seem to work (the interface is not implemented at all):
public class StrongChecker extends BasicChecker implements Checker {
This doesn't work either (the interface is not implemented at all):
public class StrongChecker extends BasicChecker {
And this gives me an error:
public class StrongChecker implements Checker extends BasicChecker {
Thanks for your help !
There is nothing wrong with:
public class StrongChecker extends BasicChecker implements Checker {
Of course, your StrongChecker class has to implement all the methods of Checker (or inherit implementations from BasicChecker), or the code won't compile.
There is nothing wrong with this syntax:
public class StrongChecker extends BasicChecker implements Checker {
This is perfectly fine just make sure you actually implement all the methods that need implementation in your interface or you will get an error.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With