Java Programming/Keywords/interface
Appearance
From Wikibooks, open books for an open world
This is the current revision of this page, as edited by Strange quark (discuss | contribs) at 18:34, 4 July 2017 (Fix categorization). The present address (URL) is a permanent link to this version.
interface
is a Java keyword. It starts the declaration of a Java Interface.
For example:
Computer code
publicinterface SampleInterface { publicvoidmethod1(); //... }
See also: