PHP self keyword points to class static variable_PHP tutorial

WBOY
Release: 2016-07-15 13:34:40
Original
913 people have browsed it

First of all, we have to make it clear that self points to the class itself, that is, the PHP self keyword does not point to any instantiated object. Generally, self is used Points to a static variable in the class.

  1. < ?php
  2. class Counter
  3. {
  4. //Define attributes, including a static variable
  5. private static $firstCount = 0;
  6. private $lastCount;
  7. //Constructor
  8. function __construct()
  9. {
  10. $this->lastCount = ++selft
    ::$firstCount;
    //Use the PHP self keyword to call static variables. When using self
    , you must use:: (field operation symbol)
  11. }
  12. //Print the last count value
  13. function printLastCount()
  14. {
  15. print( $this-> lastCount );
  16. }
  17. }
  18. //Instantiated object
  19. $countObject = newCounter(); //Output 1
  20. ?>
  21. We only need to pay attention to two places here, lines 6 and 12. We defined a static variable $firstCount on the second line, and the initial value is 0. Then we called this value on line 12, using the PHP self keyword to call it, and using "::" to connect in the middle. It's what we call a domain operator. Then what we call at this time is the static variable $frestCount defined by the class itself. Our static variable has nothing to do with the instance of the following object, it is only related to the class, then I call the class itself, then we You cannot use this to reference, you can use the PHP self keyword to reference, because self points to the class itself and has nothing to do with any object instance. In other words, if there are static members in our class, we must also use self to call them.
  22. http://www.bkjia.com/PHPjc/445966.html

www.bkjia.com

true

http: //www.bkjia.com/PHPjc/445966.html


TechArticle

First of all, we have to make it clear that self points to the class itself, that is, the PHP self keyword does not point to any existing instance. ized object, generally self is used to point to static variables in the class. ?php...

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!