CoboCards App FAQ & Wishes Feedback
Language: English Language
Sign up for free  Login

This flashcard is just one of a free flashcard set. See all flashcards!

All main topics / Informatik / Java / Java
126
Wie werden Interfaces implementiert?
mit Schlüsselwort "implements"

Beispiel:

Mixer hat (mind) selbe Schnittstelle wie IStrombetrieben

public class Mixer implements IStrombetrieben{
     private boolean istAn = false;
     private static final int
          MAXIMALE_SPANNUNG = 240;

     public void einschlaten(int spannung){
          if(spannung <= MAXIMALE_SPANNUNG) {
               this.istAn = true;
          }
     }
    
     public void ausschalten(){
          this. istAn = false;
     }
}

Tags: Interfaces und Polymorphismus, VL08
Source:
New comment
Flashcard info:
Author: P-H-I-L
Main topic: Informatik
Topic: Java
Published: 13.04.2010

Cancel
Email

Password

Login    

Forgot password?
Deutsch  English