Home >Backend Development >PHP Tutorial >PHP 面向对象的self和parent的实质是什么

PHP 面向对象的self和parent的实质是什么

WBOY
WBOYOriginal
2016-06-06 20:23:401123browse

PHP面向对象中的self和parent的实质是什么?我暂时觉得self是一个常量代表着本类类名

回复内容:

PHP面向对象中的self和parent的实质是什么?我暂时觉得self是一个常量代表着本类类名

self是指向当前类的指针,不指向任何已经实例化的对象,一般self使用来指向类中的静态变量。

parent是指向父类的指针,一般使用parent来调用父类的构造函数。

在stackoverflow上有这样一个差不多的问题:PHP: self:: vs parent:: with extends

self指向本类,parent指向父类

Statement:
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