问候!!我想知道更多关于abstact类和接口的信息。和术语一样,就像抽象类扩展和接口实现一样。需要帮助。请解决我的问题。用物质提供一些例子。
答案 0 :(得分:0)
抽象类是一个未实例化的类,所以没有这样的东西:
<?php
$p = new person();
?>
抽象类只能被继承而不能直接使用。您可以将它用作基类,放置其他类可以共享的所有代码。
接口就像是一个类必须实现的方法:
// Declare the interface 'iExample'
interface iExample
{
// methodes
}
// Implement the interface
// This will work
class Thingy implements iExample
{
// implement the methodes specifies in the interface
}