php基础知识:类与对象(5) static
时间:2021-01-15
来源:互联网
标签:
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();
-
核芯显卡是什么意思?核芯显卡和独立显卡有什么区别? 时间:2025-12-19 -
什么是算术逻辑单元ALU 算术逻辑单元的功能和结构 时间:2025-12-19 -
什么是视觉识别色差检测 视觉识别色差检测的原理、技术特点、应用及常用工具 时间:2025-12-19 -
什么是流量控制 流量控制和拥塞控制的区别 时间:2025-12-19 -
GPU虚拟化是什么意思 GPU虚拟化有哪三种方法 时间:2025-12-19 -
独显是什么意思 独显和集显的区别 时间:2025-12-19
今日更新
-
币安标记价格机制如何应对极端行情失效风险
阅读:18
-
妖精动漫网页版登录入口-妖精动漫官网正式登录入口
阅读:18
-
币安用户不公平平仓解析:标记价格机制问题处理方案
阅读:18
-
虫虫漫画免费弹窗入口极速直达-虫虫漫画免费弹窗入口纯净无广告畅看
阅读:18
-
女生骑自行车是什么梗?揭秘网络热门骑行段子背后的搞笑真相!
阅读:18
-
币安界面升级:操作便捷性提升的5大关键改进
阅读:18
-
抖音极速版赚钱新入口-抖音短视频极速版下载轻松赚钱
阅读:18
-
夸克网页版入口在哪-夸克浏览器网页版一键直达
阅读:18
-
币安优化用户界面如何满足个性化需求提升体验
阅读:18
-
女生说9点是什么梗?揭秘这个网络暗号的真实含义,看完秒懂!
阅读:18










