Java interface

Asked

Viewed 60 times

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.

  • 2

    https://www.caelum.com.br/apostila-java-orientacao-objetos/interfaces/#10-1-increasing-our-example

  • A good start, besides the link @Brumazzid.B. has already indicated, is to look at the tag [tag:interface+java] also.

  • 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!

  • Thank you guys.

  • http://answall.com/q/3603/101, http://answall.com/q/86484/101, http://answall.com/q/894/101

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.