2 Star 0 Fork 0

15002050104/php15002050104exersice1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Circle.php 554 Bytes
一键复制 编辑 原始数据 按行查看 历史
15002050104 提交于 2017-10-23 19:21 . tianjia
<?php
abstract class Circle
{
private $r;
public function __construct($r)
{
$this->r=$r;
}
public function __clone()
{
$this->r=10;
}
public function _toString()
{
return 'circle.r='.$this->r;
}
public function __call($methodname, $args)
{
die("你".$methodname."不存在");
}
public abstract function getArea();
public function __sleep()
{
return array("r");
}
}
$c=new Circle(3);
$d=$c;
$cc=clone $c;
var_dump($c);
var_dump($d);
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/a1147/php15002050104exersice1.git
git@gitee.com:a1147/php15002050104exersice1.git
a1147
php15002050104exersice1
php15002050104exersice1
master

搜索帮助