1. class Child{

  2. public $name;

  3. //定义并初始化一个静态变量 $nums 参考链接:php静态变量初始化
  4. public static $nums=0;
  5. function __construct($name){

  6. $this->name=$name;

  7. }

  8. public function join_game(){

  9. //self::$nums 使用静态变量

  10. self::$nums+=1;

  11. echo $this->name."加入堆雪人游戏";

  12. }
  13. }

  14. //创建三个小孩

  15. $child1=new Child("李逵");
  16. $child1->join_game();
  17. $child2=new Child("张飞");
  18. $child2->join_game();
  19. $child3=new Child("唐僧");
  20. $child3->join_game();

  21. //看看有多少人玩游戏

  22. echo "
    有这".Child::$nums;

复制代码


09-19 05:58