ООП в PHP 5 : Вопрос 1 : 14

Что выведет данный код?

mType; 
9.      } 
10.  
11.     final public function getColor() 
12.     { 
13.         return $this->mColor; 
14.     } 
15. } 
16.  
17. final class Apple extends Fruit { 
18.     protected $mType = ' '; 
19.     protected $mColor = 'Red'; 
20.  
21.     final public function getColor() 
22.     { 
23.         return "Apple:".$this->mColor; 
24.     } 
25. } 
26.  
27. $generalFruit = new Fruit(); 
28. $myApple = new Apple(); 
29. echo $generalFruit->getType().":".$generalFruit->getColor()  
30. ." ".$myApple->getType().":".$myApple->getColor(); 
1 балл


© Copyright © 2017 - 2019 Все права защищены. Бесплатное онлайн образование.