Heim  >  Artikel  >  Backend-Entwicklung  >  php5析构函数用法示例

php5析构函数用法示例

WBOY
WBOYOriginal
2016-07-25 08:53:54748Durchsuche
  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析构函数的用法。



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn