PHP抽象类和接口是两种不同的概念,它们都可以用来实现代码重用,但是它们之间有很多不同之处。
首先,PHP抽象类是一个特殊的类,它不能被实例化,而是用来作为其他类的基类。它可以包含一些抽象方法,这些方法必须在子类中实现。此外,抽象类还可以包含一些具体的方法和属性。
abstract class AbstractClass { // 定义一个抽象方法 abstract protected function getValue(); // 定义一个具体方法 public function printValue() { echo $this->getValue(); } }
而PHP接口则是一个特殊的对象,它不能被实例化,而是用来作为其他对象的标准。它可以包含一些抽象方法(即必须在子对象中实现的方法)和常量。
interface InterfaceName { // 定义常量 const CONSTANT = 'constant value'; // 定义一个抽象方法 public function getValue(); }
此外,还有几个显著的差异需要注意。首先,PHP中的抽象类可以有多个子类(即多重继承);而PHP中的接口则不能有子对象。此外,PHP中的抽象类可以包含具体方法和基本数据成员;而PHP中的接口则不能包含具体方法或数据成员。
抽象类定义了抽象概念,例如数字是一个抽象概念而int,字节是具体的概念。 车辆是抽象概念,当汽车和船是具体概念时。
抽象类是继承创建一个新的,非抽象(具体)类。
通过使父类抽象,你定义规则什么子类必须包含的方法。
父类中的抽象方法实际上不具有方法中的任何代码。
它留给了孩子类。它指定了子类必须做什么,而不是如何做。
要声明抽象方法,只需使用abstract关键字,如下所示:
abstract public function myMethod( $param1, $param2 );
我们可以选择指定方法必须包含的任何参数。
然而,你不包括实现该方法的任何代码,也不指定方法必须返回的值的类型。
如果你声明一个类的一个或多个方法是抽象的,你还必须声明整个类抽象:
abstract class MyClass { abstract public function myMethod( $param1, $param2 ); }
你可以实例化一个抽象类,也就是说,直接从它创建一个对象:
// Generates an error: "Cannot instantiate abstract class MyClass" $myObj = new MyClass;
<?PHP
abstract class Book {
private $Name;
public function getName() {
return $this->Name;
}
}
?>
如前所述,你也可以使用abstract关键字和方法,但是如果一个类有至少一个抽象方法,则该类本身必须被声明抽象。
如果你试图在抽象中提供任何代码,你会得到错误方法,这使得这是非法的:
<?PHP abstract class Book { abstract function say() { print "Book!"; } } ?>
这也是非法的:
<?PHP abstract class Book { abstract function say() { } } ?>
相反,一个适当的抽象方法应该是这样的:
<?PHP abstract class Book { abstract function say(); } ?>
下面的代码显示了如何提供抽象类的实现。
// w w w . java 2 s . c om
<?php
abstract class Shape {
private $_color = "black";
private $_filled = false;
public function getColor() {
return $this->_color;
}
public function setColor( $color ) {
$this->_color = $color;
}
public function isFilled() {
return $this->_filled;
}
public function fill() {
$this->_filled = true;
}
public function makeHollow() {
$this->_filled = false;
}
abstract public function getArea();
}
class Circle extends Shape {
private $_radius = 0;
public function getRadius() {
return $this->_radius;
}
public function setRadius( $radius ) {
$this->_radius = $radius;
}
public function getArea() {
return M_PI * pow( $this->_radius, 2 );
}
}
class Square extends Shape {
private $_sideLength = 0;
public function getSideLength() {
return $this->_sideLength;
}
public function setSideLength( $length ) {
$this->_sideLength = $length;
}
public function getArea() {
return pow( $this->_sideLength, 2 );
}
}
class Rectangle extends Shape {
private $_width = 0;
private $_height = 0;
public function getWidth() {
return $this->_width;
}
public function getHeight() {
return $this->_height;
}
public function setWidth( $width ) {
$this->_width = $width;
}
public function setHeight( $height ) {
$this->_height = $height;
}
public function getArea() {
return $this->_width * $this->_height;
}
}
class ShapeInfo {
private $_shape;
public function setShape( $shape ) {
$this->_shape = $shape;
}
public function showInfo( ) {
echo "<p>The shape"s color is " . $this->_shape->getColor();
echo ", and its area is " . $this->_shape->getArea() .".</p>";
}
}
$myCircle = new Circle;
$myCircle->setColor( "red" );
$myCircle->fill();
$myCircle->setRadius( 4 );
$mySquare = new Square;
$mySquare->setColor( "green" );
$mySquare->makeHollow();
$mySquare->setSideLength( 3 );
$info = new ShapeInfo();
$info->setShape( $myCircle );
$info->showInfo();
$info->setShape( $mySquare );
$info->showInfo();
$myRect = new Rectangle;
$myRect->setColor( "yellow" );
$myRect->fill();
$myRect->setWidth( 4 );
$myRect->setHeight( 5 );
$info->setShape( $myRect );
$info->showInfo();
?>
上面的代码生成以下结果。
PHP教程 -PHP while循环PHP while循环为给定条件执行一个代码块。句法while循环具有以下语法。while(condition is true){do the ...
PHP xml_set_element_handler() 函数 完整的 PHP XML 参考手册定义和用法 xml_set_element_handler() 函数规定在 XML 文档中元素...
PHP xml_set_processing_instruction_handler() 函数 完整的 PHP XML 参考手册定义和用法 xml_set_processing_instruction_handl...
介绍用来展示特定格式的日期和时间。PHP版本支持(PHP 5 = 5.2.0, PHP 7)PHP预定义常量DateTime::ATOMDATE_ATOMAtom (example: 20...
定义和用法floatval—获取变量的浮点值语法 float floatval ( mixed $var )返回变量 var 的 float 数值。参数描述varvar 可以是...