PHP5에서는 변수 유형이 정의되지 않습니다. 변수는 숫자 값, 문자열, 개체, 리소스 등 모든 유형을 가리킬 수 있습니다. PHP5의 다형성이 변수라고 말할 수는 없습니다.
PHP5에서는 메소드 매개변수의 유형 힌트 위치에 다형성이 적용된다고만 말할 수 있습니다. 클래스의 모든 하위 클래스 객체는 현재 유형을 유형 힌트로 사용하여 유형 요구 사항을 충족할 수 있습니다.
이 인터페이스를 구현하는 모든 클래스는 인터페이스 유형을 유형 힌트로 사용하여 메서드 매개 변수 요구 사항을 충족할 수 있습니다. 간단히 말해서 클래스는 상위 클래스와 구현된 인터페이스의 ID를 갖습니다.
인터페이스 구현으로 다형성 달성
<?php interface User{ // User接口 public function getName(); public function setName($_name); } class NormalUser implements User { // 实现接口的类. private $name; public function getName(){ return $this->name; } public function setName($_name){ $this->name = $_name; } } class UserAdmin{ //操作. public static function ChangeUserName(User $_user,$_userName){ $_user->setName($_userName); } } $normalUser = new NormalUser(); UserAdmin::ChangeUserName($normalUser,"Tom");//这里传入的是 NormalUser的实例. echo $normalUser->getName(); ?>
인터페이스와 합성을 사용하여 다중 상속 시뮬레이션
합성을 통해 다중 상속 시뮬레이션. PHP에서는 다중 상속이 지원되지 않습니다. 코드 재사용을 위해 여러 클래스의 메서드를 사용하려는 경우 어떤 방법이 있습니까?
그것이 합성입니다. 한 클래스에서 다른 클래스를 속성으로 설정합니다.
다음 예제에서는 다중 상속을 시뮬레이션합니다.
인터페이스 예제
개념적 예제를 작성하세요. 우리는 온라인 판매 시스템을 설계하며 사용자 부분은 다음과 같이 설계됩니다. 사용자는 NormalUser, VipUser 및 InnerUser의 세 가지 유형으로 구분됩니다. 사용자의 다양한 할인을 기준으로 사용자가 구매한 상품의 가격을 계산해야 합니다. 그리고 향후 확장 및 유지 관리를 위해 공간을 확보해야 합니다.
<?php interface User { public function getName(); public function setName($_name); public function getDiscount(); } abstract class AbstractUser implements User { private $name = ""; protected $discount = 0; protected $grade = ""; function __construct($_name) { $this->setName($_name); } function getName() { return $this->name; } function setName($_name) { $this->name = $_name; } function getDiscount() { return $this->discount; } function getGrade() { return $this->grade; } } class NormalUser extends AbstractUser { protected $discount = 1.0; protected $grade = "Normal"; } class VipUser extends AbstractUser { protected $discount = 0.8; protected $grade = "VipUser"; } class InnerUser extends AbstractUser { protected $discount = 0.7; protected $grade = "InnerUser"; } interface Product { function getProductName(); function getProductPrice(); } interface Book extends Product { function getAuthor(); } class BookOnline implements Book { private $productName; protected $productPrice; protected $Author; function __construct($_bookName) { $this->productName = $_bookName; } function getProductName() { return $this->productName; } function getProductPrice() { $this->productPrice = 100; return $this->productPrice; } public function getAuthor() { $this->Author = "chenfei"; return $this->Author; } } class Productsettle { public static function finalPrice(User $_user, Product $_product, $number) { $price = $_user->getDiscount() * $_product->getProductPrice() * $number; return $price; } } $number = 10; $book = new BookOnline("设计模式"); $user = new NormalUser("tom"); $price = Productsettle::finalPrice($user, $book, $number); $str = "您好,尊敬的" . $user->getName() . "<br />"; $str .= "您的级别是" . $user->getGrade() . "<br />"; $str .= "您的折扣是" . $user->getDiscount() . "<br />"; $str .= "您的价格是" . $price; echo $str; ?>
추천 튜토리얼: PHP 비디오 튜토리얼
위 내용은 다형성을 구현하기 위해 PHP는 어떤 형식을 사용합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!