Home  >  Article  >  Backend Development  >  刚学面向对象,如何在方法中调用其他方法

刚学面向对象,如何在方法中调用其他方法

WBOY
WBOYOriginal
2016-06-13 10:16:52974browse

刚学面向对象,怎么在方法中调用其他方法?
暗暗暗暗暗暗暗暗暗暗  


------解决方案--------------------
$this->方法名();
------解决方案--------------------
$this->方法名();
------解决方案--------------------
静态方法:self:方法名();

一般方法:
$对象名=new 类名();
$对象名->方法名();
------解决方案--------------------

探讨

静态方法:self:方法名();

一般方法:
$对象名=new 类名();
$对象名->方法名();

------解决方案--------------------
在类的方法里面用自己的方法 静态方法:self:方法名(); $this->方法名();
------解决方案--------------------
要学面向对象 建议学java或.net
php哪有什么面向对面
那种似是而非的伪面向对象坑爹
------解决方案--------------------
new 一个对象,然后在该对象的方法中直接写 方法1().方法2()
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