php的类使用样例
这个demo。差不多php的类的主要知识点都用到了。
public,private关键字,
namespace,use命令空间,
require导入,
interface复用,
abstract抽象类,
trait代码复用
static静态变量及静态方法
extends继承
implements实现
__construct初始化
=====================
Unique.php
<?php namespace Bookstore\Utils; trait Unique { //static静态属性,类似于其它语言的类变量 private static $lastId = 0; //protected保护属性,仅允许继承类访问 protected $id; public function setId(int $id) { //内置函数判断id是否为空,比$id == null要逼格好点 if (empty($id)) { //注意区分$this-和self::$的语法 $this->id = ++self::$lastId; } else { $this->id = $id; if ($id > self::$lastId) { self::$lastId = $id; } } } public function getId():int { return $this->id; } //静态方法 public static function getLastId():int { return self::$lastId; } } ?>
Person.php
<?php namespace Bookstore\Domain; use Bookstore\Utils\Unique; //命名空间可以直接use,但如果这个命名空间没有在标准约定位置,且没有自动载入的话,需要使用require来手工定位一下. require_once __DIR__ . '/Unique.php'; class Person { //trait的用法,类内use use Unique; //protected保护属性,仅允许继承类访问 protected $firstname; protected $surname; //private私有属性,不允许类外部直接修改 private $email; //构造函数,初始化类的好地方 public function __construct( $id, string $firstname, string $surname, string $email ) { $this->firstname = $firstname; $this->surname = $surname; $this->email = $email; //复用trait内的方法代码 $this->setId($id); } public function getFirstname():string { return $this->firstname; } public function getSurname():string { return $this->surname; } public function getEmail():string { return $this->email; } //类的部通过public方法更改属性,达到信息封装;类内部通过->修改. public function setEmail(string $email) { $this->email = $email; } } ?>
Payer.php
<?php //命名空间 namespace Bookstore\Domain; interface Payer { public function pay(float $amount); public function isExtentOfTaxes(): bool; } ?>
Customer.php
<?php //命名空间 namespace Bookstore\Domain; //use Bookstore\Domain\Payer; require_once __DIR__ . '/Payer.php'; interface Customer { public function getMonthlyFee(): float; public function getAmountToBorrow(): int; public function getType(): string; } ?>
Basic.php
<?php namespace Bookstore\Domain; /* use Bookstore\Domain\Person; use Bookstore\Domain\Customer; use Bookstore\Domain\Payer; */ require_once __DIR__ . '/Person.php'; require_once __DIR__ . '/Customer.php'; require_once __DIR__ . '/Payer.php'; class Basic extends Person implements Customer, Payer { public function getMonthlyFee():float { return 5.0; } public function getAmountToBorrow():int { return 3; } public function getType(): string { return 'Basic'; } public function pay(float $amount) { echo "Paying $amount."; } public function isExtentOfTaxes(): bool { return false; } } ?>
Premium.php
<?php namespace Bookstore\Domain; /* use Bookstore\Domain\Person; use Bookstore\Domain\Customer; use Bookstore\Domain\Payer; */ require_once __DIR__ . '/Person.php'; require_once __DIR__ . '/Customer.php'; require_once __DIR__ . '/Payer.php'; class Premium extends Person implements Customer, Payer { public function getMonthlyFee():float { return 10.0; } public function getAmountToBorrow():int { return 10; } public function getType(): string { return 'Premium'; } public function pay(float $amount) { echo "Paying $amount."; } public function isExtentOfTaxes(): bool { return true; } } ?>
Book.php
<?php namespace Bookstor\Domain; class Book { public function __construct ( int $isbn, string $title, string $author, int $available = 0 ) { $this->isbn = $isbn; $this->title = $title; $this->author = $author; $this->available = $available; } public function getIsbn():int { return $this->isbn; } public function getTitle():string { return $this->title; } public function getAuthor():string { return $this->author; } public function isAvailable():bool { return $this->available; } public function getCopy():bool { if ($this->available < 1) { return false; } else { $this->available--; return true; } } public function addCopy() { $this->available++; } public function __toString() { $result = '<i>' . $this->title . '</i> - ' . $this->author; if (!$this->available) { $result .= ' <b>Not available</b>'; } else { $result .= " <b>{$this->available}</b>"; } return $result . '<br/>'; } } ?>
test.php
<?php //使用命名空间,易于在大型应用中管理和组织php类. use Bookstor\Domain\Book; use Bookstore\Domain\Customer; use Bookstore\Domain\Person; use Bookstore\Domain\Basic; use Bookstore\Domain\Premium; use Bookstore\Utils\Unique; //命名空间可以直接use,但如果这个命名空间没有在标准约定位置,且没有自动载入的话,需要使用require来手工定位一下. require_once __DIR__ . '/Unique.php'; require_once __DIR__ . '/Book.php'; require_once __DIR__ . '/Customer.php'; require_once __DIR__ . '/Person.php'; require_once __DIR__ . '/Basic.php'; require_once __DIR__ . '/Premium.php'; $book1 = new Book("1984", "George Orwell", 9785267006323, 12); $book2 = new Book("1984", "George Orwell", 9785267006323); $customer1 = new Basic(5, 'John', 'Doe', 'johndoe@mail.com'); //$customer2 = new Customer(null, 'Mary', 'Poppins', 'mp@mail.com'); $customer3 = new Premium(7, 'James', 'Bond', '007@mail.com'); if ($book1->getCopy()) { echo 'Sale 1 copy.<br/>'; } else { echo 'can not sale.<br/>'; } //数据类型转换,天下语言几乎大同. $string1 = (string)$book1; $string2 = (string)$book2; echo $string1; echo $string2; //调用类的静态方法,可以直接用类名,也可以用实例名.但都是用::符号. echo Person::getLastId(); echo '<br/>'; echo $customer1::getLastId(); function checkIfValid(Customer $customer, array $books):bool { return $customer->getAmountToBorrow() >= count($books); } echo '<br/>'; var_dump(checkIfValid($customer1, [$book1])); echo '<br/>'; var_dump(checkIfValid($customer3, [$book1])); echo '<br/>'; $basic = new Basic(1, "name", "surname", "email"); $premium = new Premium(2, "name", "surname", "email"); var_dump($basic->getId()); echo '<br/>'; var_dump($premium->getId()); echo '<br/>'; var_dump(Person::getLastId()); echo '<br/>'; var_dump(Unique::getLastId()); echo '<br/>'; var_dump(Basic::getLastId()); echo '<br/>'; var_dump(Premium::getLastId()); echo '<br/>'; //判断父类及继承关系 var_dump($basic instanceof Basic); echo '<br/>'; var_dump($premium instanceof Basic); echo '<br/>'; var_dump($basic instanceof Customer); echo '<br/>'; var_dump($premium instanceof Payer); echo '<br/>'; var_dump($basic instanceof Payer); echo '<br/>'; function processPayment($payer, float $amount) { if ($payer->isExtentOfTaxes()) { echo "What a lucky one..."; } else { $amount *= 1.16; } $payer->pay($amount); } //多态实现 processPayment($basic, 2000); echo '<br/>'; processPayment($premium, 2000); echo '<br/>'; ?>
输出:
Sale 1 copy. George Orwell - 9785267006323 11 George Orwell - 9785267006323 Not available 7 7 bool(true) bool(true) int(1) int(2) int(7) int(0) int(7) int(7) bool(true) bool(false) bool(true) bool(false) bool(false) Paying 2320. What a lucky one...Paying 2000.
php的类使用样例的更多相关文章
- Scala模式匹配和样例类
Scala有一个十分强大的模式匹配机制,可以应用到很多场合:如switch语句.类型检查等.并且Scala还提供了样例类,对模式匹配进行了优化,可以快速进行匹配. 1.字符匹配 def mai ...
- OpenCV LDA(Linnear Discriminant analysis)类的使用---OpenCV LDA演示样例
1.OpenCV中LDA类的声明 //contrib.hpp class CV_EXPORTS LDA { public: // Initializes a LDA with num_componen ...
- 【Scala篇】--Scala中Trait、模式匹配、样例类、Actor模型
一.前述 Scala Trait(特征) 相当于 Java 的接口,实际上它比接口还功能强大. 模式匹配机制相当于java中的switch-case. 使用了case关键字的类定义就是样例类(case ...
- Scala--模式匹配和样例类
模式匹配应用场景:switch语句,类型查询,析构,样例类 一.更好的switch val ch :Char = '+' val sign = ch match{ case '+' => 1 c ...
- Scala-Unit6-final/type关键字、样例类&样例对象
一.关键字 1.final关键字 用final修饰的类:不能被继承 用final修饰的方法:不能被重写 注意:(1)在Scala中变量不需要用final修饰,因为val与var已经限制了变量是否可变 ...
- Scala基础:模式匹配和样例类
模式匹配 package com.zy.scala import scala.util.Random /** * 模式匹配 */ object CaseDemo { def main(args: Ar ...
- Java线程演示样例 - 继承Thread类和实现Runnable接口
进程(Process)和线程(Thread)是程序执行的两个基本单元. Java并发编程很多其它的是和线程相关. 进程 进程是一个独立的执行单元,可将其视为一个程序或应用.然而,一个程序内部同事还包括 ...
- Scala学习十四——模式匹配和样例类
一.本章要点 match表达式是更好的switch,不会有意外调入下一个分支 如果没有模式能够匹配,会抛出MatchError,可以用case _模式避免 模式可以包含一个随意定义的条件,称做守卫 你 ...
- 学好Spark/Kafka必须要掌握的Scala技术点(二)类、单例/伴生对象、继承和trait,模式匹配、样例类(case class)
3. 类.对象.继承和trait 3.1 类 3.1.1 类的定义 Scala中,可以在类中定义类.以在函数中定义函数.可以在类中定义object:可以在函数中定义类,类成员的缺省访问级别是:publ ...
随机推荐
- 苹果 appstore 上架 ipv6 服务 配置
前言 好久之前的事了,苹果审核突然要求ipv6,一片哀嚎. 研究了好久找到了基于阿里云经典网络Windows Server的配置方法. https://bbs.aliyun.com/read/2849 ...
- Docker环境下的前后端分离项目部署与运维(六)搭建MySQL集群
单节点数据库的弊病 大型互联网程序用户群体庞大,所以架构必须要特殊设计 单节点的数据库无法满足性能上的要求 单节点的数据库没有冗余设计,无法满足高可用 单节点MySQL的性能瓶领颈 2016年春节微信 ...
- Failed to contact the endpoint at http://controller:35357/ for discovery. Fallback to using that endpoint as the base url.
问题描述 openstack安装过程中,执行 openstack domain create --description "Domain" example 报错如下: Failed ...
- es 内存占用优化
对6.3: 修改Elasticsearch中JVM配置文件jvm.options: Dlog4j2.enable.threadlocals=false 注: 本文主要针对ES 2.x. “该给ES分配 ...
- 读《PMI 分析手册》
目录 读<PMI 分析手册> 官方 PMI 基本概况 官方制造业 PMI 官方非制造业 PMI 综合 PMI 产出指数 PMI 分析框架 PMI 与经济周期 官方 PMI 分析 参考研报 ...
- Range Sum Query - Mutable 精简无递归线段树
操作: 单点更新,区间求和 区间求和:如sum [3,10) 需要对19,5,12,26节点求和即可. 观察可知,左端点为右子节点(奇数)时直接相加,右端点为左子节点(偶数)时直接相加,两边向中间移动 ...
- Windows docker k8s asp.net core
在上一篇文章 Ubuntu 18 Kubernetes的Install and Deploy 我们在ubuntu在部署了k8s集群, 今天来看看windows下怎么搞. 主要点有: 1) window ...
- Prometheus 重新标签
Prometheus 重新标签 允许在采集之前对任何目标及其标签进行修改 • 重命名标签名 • 删除标签 • 过滤目标 action:重新标签动作 replace:默认,通过regex匹配source ...
- Python如何进行有背景图片的界面跳转
一.问题在进行tkinter点击按钮弹出新的界面的时候遇到了下面的问题:[_tkinter.TclError: image "pyimage2" doesn't exist] 原因 ...
- 对ssm框架里面的一些常用注解的理解
@Componcnt :作用就是把当前类对象存入spring容器中 属性:value 用于指定bean的id 当我们不写的时候默认就是当前类名,并且首字母要小写 ------------------- ...