JavaTXCompilerInJavaTX/examples/feda/feda4.jav

17 lines
333 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
public class Auto {
tachoStand;
public void fahren(distanz) {
tachoStand = tachoStand + distanz;
}
public void abschleppen(auto, distanz) {
auto.fahren(distanz);
}
public static void main(String[] args) {
meinPKW.fahren(100);
bmw.fahren(100);
bmw.fahren(100);
}
}