Eine Klasse in Java
public class Sparbuch { public void auszahlen( float betrag ) { ... } public void einzahlen( float betrag ) { ... } public void berechneZinsen() { ... } private float saldo; private float zinssatz; } | Für jede Klasse wird in Java eine eigene Datei angelegt. Beispiel: Sparbuch.java Operationen, (Methoden, Routinen) Attribute Blockanfang |
No comments:
Post a Comment