PHP 中的类抽象和对象接口之间的区别?
类抽象和PHP 中的对象接口?我问这个问题是因为,我真的不明白他们俩有什么意义,他们都做同样的事情!那么,同时使用两者来对抗其中一个或另一个的优点和缺点是什么?
类抽象:
abstract class aClass
{
// Force extending class to define these methods
abstract public function setVariable($name, $var);
abstract public function getHtml($template);
}
对象接口:
interface iClass
{
// Force impementing class to define these methods
public function setVariable($name, $var);
public function getHtml($template);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以实现多个接口,但只能扩展一个类。
可能:
不可能:
此外,接口不能有实现。
可能:
不可能:
来自 Java 术语表:
您还应该看看这个问题 - Damien 关于接口如何是一个合同是一项重要的合同。
You can implement multiple interfaces but only extend one class.
Possible:
Not Possible:
Additionally, an interface cannot have implementation.
Possible:
Not Possible:
From the Java Glossary:
You should also take a peek at this question - Damien's point about how an interface is a contract is an important one.
除了方法定义之外,抽象类还可以定义方法实现。 接口只能指定方法定义。
An abstract class can define method implementation, in addition to method definitions. An inferface can only specify the method definition.
多个接口加上您的脚本不会遇到任何家长的困惑。
Multiple interfaces plus your scripts don't run into any parent confusion.