0
I’m beginner in Java and I’m having some questions about interfaces, I wonder if someone can explain to me the theoretical part of interfaces, if someone has a simple example Interface, I thank you.
0
I’m beginner in Java and I’m having some questions about interfaces, I wonder if someone can explain to me the theoretical part of interfaces, if someone has a simple example Interface, I thank you.
Browser other questions tagged java interface
You are not signed in. Login or sign up in order to post.
https://www.caelum.com.br/apostila-java-orientacao-objetos/interfaces/#10-1-increasing-our-example
– Brumazzi DB
A good start, besides the link @Brumazzid.B. has already indicated, is to look at the tag [tag:interface+java] also.
– user28595
Dude, an interface is a kind of reference in Java, it’s similar to a class, it’s a collection of abstract methods. Not instantiable, it serves as a template for other classes to inherit and implement their abstaining methods. the specific way in which each one will behave. It has more than that, but it already gives a clear!
– Christian Felipe
Thank you guys.
– Snowfake
http://answall.com/q/3603/101, http://answall.com/q/86484/101, http://answall.com/q/894/101
– Maniero