php基础知识:类与对象(5) static

2015-01-24信息快讯网

Declaring class members or methods as static makes them accessible without needing an instantiation of the class. A member declared as static can not be accessed with an instantiated class object (though a static method can). 
声明静态的类变量和方法可以不需要实例化类对象的情况下对他们进行调用。静态类不能被类对象调用。(类的静态方法可以)。//注意看第一个例子,在一个非静态的方法中调用了静态的变量。唯一的不同是用了self。难道用了self就可以????不知道???需要一个试验。

The static declaration must be after the visibility declaration. For compatibility with PHP4, if no visibility declaration is used, then the member or method will be treated as if it was declared as public. 
静态声明必须必须是显式的声明。为了兼容PHP4,如果没有显式声明的对象或者方法,被当作声明为public。

Because static methods are callable without an instance of the object created, the pseudo variable $this is not available inside the method declared as static. 
因为静态方法不需要实例化类对象来调用,所以伪变量$this在静态方法中也是不可用的。 

In fact static method calls are resolved at compile time. When using an explicit class name the method is already identified completely and no inheritance rules apply. If the call is done by self then self is translated to the current class, that is the class the code belongs to. Here also no inheritance rules apply. 
实际上,静态的方法调用在编译时已经确定了。(这段我不会翻译。???不明白???)
求了很久求来的翻译如下:
------------------------------------------------
实际上,静态方法的调用在编译时解决。当使用一个明确的类名时,方法已经被完全识别而不需要应用继承规则。如果由自身调用,那么自身被解析成当前的类,也就是代码所属的类。这里也没有应用继承规则。
但是一个新的问题:
这里不一定有继承产生,为什么会提到继承规则?(???不明白????)

Static properties cannot be accessed through the object using the arrow operator ->. Calling non-static methods statically generates an E_STRICT level warning. 
静态成员不能被类的对象通过箭头符号->来调用。静态的调用一个非静态方法会导致一个E_STRICT级别的警告。

静态成员例:

class Foo  
{  
   public static $my_static = 'foo';   
   public function staticValue() {  
       return self::$my_static;//注意这里!!!!  
       //return $my_static;//这样写会不会出错。需要试验  
   }  
}  

class Bar extends Foo  
{  
   public function fooStatic() {  
       return parent::$my_static;//注意这里!!!!  
   }  
}  
print Foo::$my_static . " n";  
$foo = new Foo();  
print $foo->staticValue() . " n";  
print $foo->my_static . " n";      // 未定义的"Property" my_static   
// $foo::my_static is not possible  
print Bar::$my_static . " n";  
$bar = new Bar();  
print $bar->fooStatic() . " n";  

静态方法例:  
class Foo {  
   public static function aStaticMethod() {  
       // ...  
   }  
}  
Foo::aStaticMethod(); 

PHP5.2中date()函数显示时间与北京时间相差8小时的解决办法
对squid中refresh_pattern的一些理解和建议
php Http_Template_IT类库进行模板替换
php Try Catch异常测试
php strtotime 函数UNIX时间戳
php str_pad 函数使用详解
PHP setcookie() cannot modify header information 的解决方法
Zend Studio for Eclipse的java.lang.NullPointerException错误的解决方法
Zend Studio 无法启动的问题解决方法
Optimizer与Debugger兼容性问题的解决方法
PHP strtr() 函数使用说明
IIS php环境配置PHP5 MySQL5 ZendOptimizer phpmyadmin安装与配置
php array_slice函数的使用以及参数详解
php magic_quotes_gpc的一点认识与分析
php utf-8转unicode的函数第1/2页
php中iconv函数使用方法
php在线生成ico文件的代码
谈谈新手如何学习PHP
php基础知识:类与对象(4) 范围解析操作符(::)
function.inc.php超越php
用PHP函数解决SQL injection
弄了个检测传输的参数是否为数字的Function
PHP date函数参数详解
用PHP的ob_start();控制您的浏览器cache!
利用static实现表格的颜色隔行显示
PHP 和 XML: 使用expat函数(三)
PHP 和 XML: 使用expat函数(二)
PHP 和 XML: 使用expat函数(一)
vBulletin HACK----显示话题大小和打开新窗口于论坛索引页
将OICQ数据转成MYSQL数据
支持oicq头像的留言簿(一)
支持oicq头像的留言簿(二)
模拟OICQ的实现思路和核心程序(三)
使用PHP和XSL stylesheets转换XML文档
substr()函数中文版
Get或Post提交值的非法数据处理
©2014-2024 dbsqp.com