SHOW:
|
|
- or go back to the newest paste.
| 1 | <?php | |
| 2 | class Tier | |
| 3 | {
| |
| 4 | public Name; | |
| 5 | public Fellfarbe; | |
| 6 | public KrallenLaenge; | |
| 7 | public AnzahlBeine; | |
| 8 | ||
| 9 | public gibNamenAus() | |
| 10 | {
| |
| 11 | echo "Ich heiße ".$this->name."\n"; | |
| 12 | } | |
| 13 | } | |
| 14 | class Hund extends Tier | |
| 15 | {
| |
| 16 | public GefangeneKatzen; | |
| 17 | public function gibLaut() | |
| 18 | {
| |
| 19 | echo "Wau\n"; | |
| 20 | } | |
| 21 | } | |
| 22 | class Katze extends Tier {
| |
| 23 | public GefangeneVoegel; | |
| 24 | public function gibLaut() | |
| 25 | {
| |
| 26 | echo "Miau\n"; | |
| 27 | } | |
| 28 | } | |
| 29 | class Amsel extends Tier | |
| 30 | {
| |
| 31 | - | public GefangeneInsekten |
| 31 | + | public GefangeneInsekten; |
| 32 | public function gibLaut() | |
| 33 | {
| |
| 34 | echo "Piep"; | |
| 35 | } | |
| 36 | } |