Java Programming/Keywords/interface
Appearance
interface
is a Java keyword. It starts the declaration of a Java Interface.
For example:
public interface SampleInterface
{
public void method1();
//...
}
|
See also:
interface
is a Java keyword. It starts the declaration of a Java Interface.
For example:
public interface SampleInterface
{
public void method1();
//...
}
|
See also: