Code :
- interface MonInterface
- {
- void A();
- int B();
- void C(int, int);
- }
|
l'interface n'a aucune implémentation
Code :
- class ImplementationDeMonInterface implements MonInterface
- {
- void A() { ... }
- int B() { ... return 546; }
- void C(int _a, int _b) { ... }
- }
|
L'avantage des interfaces en java est qu'il est possible d'en implémenter plusieurs pour un même classe, contrairement à l'héritage multiple qui est interdit.
Message édité par schnapsmann le 26-01-2003 à 15:42:30
---------------
From now on, you will speak only when spoken to, and the first and last words out of your filthy sewers will be "Sir!"