Java Programming/Keywords/interface
From Wikibooks, open books for an open world
< Java Programming | Keywords
interface
is a Java keyword. It starts the declaration of a Java Interface.
For example:
![]() |
public interface SampleInterface
{ public void method1(); //... } |
See also: