Blogger Information
Blog 63
fans 2
comment 0
visits 163098
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP面向对象中static静态属性和静态方法的调用
书声的博客
Original
940 people have browsed it
<?php
header("content-type:text/html;charset=utf-8");
class Human{ 
 static public $name = "小妹";
 public $height = 180; 
 
 static public function tell()
 {
      echo self::$name;//静态方法调用静态属性,使用self关键词
     //echo $this->height;//错。静态方法不能调用非静态属性
     //因为 $this代表实例化对象,而这里是类,不知道 $this 代表哪个对象
 } 
 
 public function say()
 {
      echo self::$name . "我说话了"; //普通方法调用静态属性,同样使用self关键词
      echo $this->height;
 }
 
}
$p1 = new Human();
$p1->say(); 
$p1->tell();
//对象可以访问静态方法echo $p1::$name;
//对象访问静态属性。不能这么访问$p1->name
//因为静态属性的内存位置不在对象里Human::say();
//错。say()方法有$this时出错;没有$this时能出结果
//但php5.4以上会提示?>结论:



(1)静态属性不需要实例化即可调用。因为静态属性存放的位置是在类里,调用方法为"类名::属性名";
(2)静态方法不需要实例化即可调用。同上
(3)静态方法不能调用非静态属性。因为非静态属性需要实例化后,存放在对象里;
(4)静态方法可以调用非静态方法,使用 self 关键词。php里,一个方法被self:: 后,它就自动转变为静态方法;

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post