php 接口继承接口

论坛 期权论坛 脚本     
已经匿名di用户   2022-5-29 19:29   1645   0
<?php
interface User 
{ 
function getName(); 
function setName($_name); 
} 
interface VipUser extends User //VipUser继承User接口
{ 
function getDiscount(); //此处添加了一个抽象的方法 
} 
class Vip implements VipUser 
{ 
private $name; 
private $discount = 0.8; //折扣变量 
function getName() { 
return $this->name; 
} 
function setName($_name) { 
$this->name = $_name; 
} 
function getDiscount() { 
return $this->discount; 
} 
} 

$v = new Vip;
echo $v->getDiscount();

转载于:https://www.cnblogs.com/codelifezj/archive/2011/12/28/2304436.html

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:81
帖子:4969
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP