Heim > Artikel > Backend-Entwicklung > 关于类继承函数重载的有关问题?大神进
关于类继承函数重载的问题?大神进
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->class a{function a(){...}function select(){...}}class b extends a{function b(){...}function select(){//这里能调用a类的select函数,但是我的感觉好像写法不规范,老感觉会死循环..$this->select();//是不是有别的写法//这写法 $a = new a(); $a->select();是不是比较耗内存,重新定义了一个对象)}}