이 기사의 예에서는 PHP 객체 지향 프로그래밍의 고급 기능을 설명합니다. 다음과 같이 참조용으로 모든 사람과 공유하세요.
고급 기능
포함:
1. 정적 메서드 및 속성(객체 대신 클래스를 통해 데이터 및 함수에 액세스)
2. 추상 클래스 및 인터페이스(설계와 구현 분리)
3. 오류 처리(예외)
4. 최종 클래스 및 메서드(제한된 상속)
5. 🎜>6. 파괴 방법(객체 파괴 전 정리)
7. 객체 복제(객체 복사본 생성)
8. 객체를 문자열로 구문 분석
<?php class StaticExample{ static public $aNum = 10; static public function sayHello(){ print "hello"; } } print StaticExample::$aNum."<br/>"; StaticExample::sayHello();팁:1. 정적 메서드는 클래스의 일반 속성에 액세스할 수 없습니다. 객체에 대한 것이지만 정적 속성에 액세스할 수 있습니다.
2. 객체에서는 정적 메서드를 호출할 수 없으므로 정적 메서드에서는 의사 변수 $this를 사용할 수 없습니다.
<?php class ShopProduct{ private $title; private $producerMainName; private $producerFirstName; protected $price; private $discount = 0; private $id = 0; function __construct($title,$firstName,$mainName,$price){ $this->title = $title; $this->producerFirstName = $firstName; $this->producerMainName = $mainName; $this->price = $price; } public function setID($id){ $this->id = $id; } public static function getInstance($id,PDO $pdo){ $query = "select * from products where id= '$id'"; $stmt = $pdo->query($query); $row = $stmt->fetch(); if(empty($row)){ return null; } if($row['type'] == "book"){ $product = new BookProduct($row['title'], $row['firstname'], $row['mainname'], $row['price'], $row['numpages'] ); }else if($row['type'] == "cd"){ $product = new CdProduct($row['title'], $row['firstname'], $row['mainname'], $row['price'], $row['playLength'] ); }else{ $product = new ShopProduct($row['title'], $row['firstname'], $row['mainname'], $row['price'] ); } $product->setId($row['id']); $product->setDiscount($row['discount']); return $product; } public function getProducerFirstName(){ return $this->producerFirstName; } public function getProducerMainName(){ return $this->producerMainName; } public function setDiscount($num){ $this->discount = $num; } public function getDiscount(){ return $this->discount; } public function getTitle(){ return $this->title; } public function getPrice(){ return ($this->price - $this->discount); } function getProducer(){ return $this->producerFirstName." ".$this->producerMainName; } function getSummaryLine(){ $base = "$this->title({$this->producerMainName},"; $base .= "{$this->producerFirstName})"; return $base; } } class CdProduct extends ShopProduct{ private $playLength; function __construct($title,$firstName,$mainName,$price,$playLength){ parent::__construct($title,$firstName,$mainName,$price);//继承父类的构造函数 $this->playLength = $playLength; } function getPlayLength(){ return $this->playLength; } function getSummaryLine(){ $base = parent::getSummaryLine(); $base .= ":playing time {$this->playLength}"; return $base; } } class BookProduct extends ShopProduct{ private $numPages = 0; function __construct($title,$firstName,$mainName,$price,$numPages){ parent::__construct($title,$firstName,$mainName,$price); $this->numPages = $numPages; } function getnumPages(){ return $this->numPages; } function getSummaryLine(){ $base = parent::getSummaryLine(); $base .= ":page count {$this->numPages}"; return $base; } } $dsn = "sqlite:C:/Users/Administrator/Desktop/shop.db"; $pdo = new PDO($dsn,null,null); $pdo->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); $obj = ShopProduct::getInstance(1,$pdo); echo $obj->getSummaryLine();이 글이 PHP 프로그래밍에 종사하는 모든 분들께 도움이 되기를 바랍니다. . 더 많은 관련 내용을 보려면 PHP 중국어 웹사이트(www.php.cn)를 주목하세요!