getNam" />
主页 > php易尔灵网络科技

php里的protected

146 2024-03-10 06:11

<?php class Fruit { protected $name; public function __construct($name) { $this->name = $name; } protected function getName() { return $this->name; } } class Apple extends Fruit { public function showName() { return "This is an " . $this->getName(); // 可以访问父类的protected方法 } } $apple = new Apple("Apple"); echo $apple->showName(); // 输出:This is an Apple
顶一下
(0)
0%
踩一下
(0)
0%
相关评论
我要评论
点击我更换图片

热点提要

网站地图 (共30个专题158458篇文章)

返回首页