“最终”是什么意思? PHP 中的意思?

发布于 2024-10-08 04:58:55 字数 74 浏览 1 评论 0原文

final static public function registerAutoload(){}
final static public function registerAutoload(){}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦开始←不甜 2024-10-15 04:58:55

它实际上意味着子类不能重写此方法,或者作为 PHP Final关键字文档指出:

“...防止子类
通过添加前缀来重写方法
定义与final。如果班级
本身被定义为最终的然后它
无法延长。”

It effectively means that sub-classes cannot override this method, or as the PHP final keyword documentation states:

"...prevents child classes from
overriding a method by prefixing the
definition with final. If the class
itself is being defined final then it
cannot be extended."

情释 2024-10-15 04:58:55

这意味着子类不能重写方法registerAutoload

It means a child class cannot override the method registerAutoload.

千纸鹤 2024-10-15 04:58:55

与所有其他语言相同:任何扩展包含 final 方法的类都不能覆盖该特定方法。

The same as in every other language: any class that extends another containing a final method cannot override that specific method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文