>  기사  >  백엔드 개발  >  php5析构函数用法示例

php5析构函数用法示例

WBOY
WBOY원래의
2016-07-25 08:53:54748검색
  1. /*
  2. * to change the template for this generated file go to
  3. * window - preferences - phpeclipse - php - code templates
  4. */
  5. class student{
  6. //属性
  7. private $no;
  8. private $name;
  9. private $gender;
  10. private $age;
  11. private static $count=0;
  12. function __construct($pname)
  13. {
  14. $this->name = $pname;
  15. self::$count++;
  16. }
  17. function __destruct()
  18. {
  19. self::$count--;
  20. }
  21. static function get_count()
  22. {
  23. return self::$count;
  24. }
  25. }
  26. $s1=new student("tom");
  27. print(student::get_count());
  28. $s2=new student("jerry");
  29. print(student::get_count());
  30. $s1=null;
  31. print(student::get_count());
  32. $s2=null;
  33. print(student::get_count());
  34. ?>
复制代码

以上实例展示了php5析构函数的用法。



성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.