添加说话方法
Adding Speak Methods
如何为下面的狗 class 添加说话方法。
我正在尝试让狗拥有吠叫的能力。
<?php
class Dog
{
private $dog_weight = 0;
private $dog_breed = "no breed";
private $dog_color = "no color";
private $dog_name = "no name";
function display_properties()
{
print "Dog weight is $this->dog_weight. Dog breed is $this->dog_breed. Dog color is $this->dog_color.";
}
}
?>
不确定您是否因为问题的基本性质而被否决,但基本上您只需要:
- 在 class
上创建一个 public 方法
echo
(或上面的 print
)您希望狗 class 说的内容
查看 "Defining Class Methods" section on this tutorial 以获得简单的概述。
如何为下面的狗 class 添加说话方法。 我正在尝试让狗拥有吠叫的能力。
<?php
class Dog
{
private $dog_weight = 0;
private $dog_breed = "no breed";
private $dog_color = "no color";
private $dog_name = "no name";
function display_properties()
{
print "Dog weight is $this->dog_weight. Dog breed is $this->dog_breed. Dog color is $this->dog_color.";
}
}
?>
不确定您是否因为问题的基本性质而被否决,但基本上您只需要:
- 在 class 上创建一个 public 方法
echo
(或上面的print
)您希望狗 class 说的内容
查看 "Defining Class Methods" section on this tutorial 以获得简单的概述。