参数变量可以是任何基本类型的数据,参数默认情况下也可以是任何类型的对象,在方法定义中可能会出现一些问题。
class ShopProductWriter {
// 接受ShopProduct对象的方法
public function write($shopProduct){
$str = "{$shopProduct->title}: " . $shopProduct->getProducer() . " ({$shopProduct->price})\n";
print $str;
}
}
$product1 = new ShopProduct("My Antonia", "Willa", "Cather", 5.99);
$write = new ShopProductWriter();
$write->write($product1); // My Antonia: Willa Cather (5.99)
把参数变量命名为$shopProduct,说明该方法希望接受一个ShopProduct对象,但是并没有强制要求。也就是说,可能接受到非预期的对象或基本类型,但在实际处理$ShopProduct之前不会知道具体是什么。
为了解决没有强制要求参数类型
这个问题,PHP5引入了类的类型提示(type hint)
。要增加一个方法参数的类型提示,只需简单地将类名放在需要约束
的方法参数之前。
public function write(ShopProduct $shopProduct) {
//...
}
现在write()方法只接受包含ShopProduct对象的$shopProduct参数。如果给方法传入其他对象将会产生严重错误。
有了参数的类型提示,就不再需要在使用参数前对其进行类型检查。类型提示是在运行时才生效的,也就是说,类型提示只有在错误的对象被传递给方法时才会报错。
类型提示不能用于强制规定参数为某种基本数据类型
,如字符串和整型。如果要处理基本数据类型,在方法中可以使用is_int()这样的类型检查函数。但可以强制规定使用数组作为参数:
function setArray(array $storeArray) {
$this->array = $storeArray;
}
在PHP5.1中加入了对数组提示的支持,而后来的版本还新增了对null默认值得参数提示,即可以指定参数为一个特定类型或null值:
function setWriter(ObjectWrite $objWrite=null){
$this->writer = $objWrite;
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。