throw new 和new的区别
程序员文章站
2022-06-02 16:05:55
...
class a extends Exception{
function __construct(){
parent::__construct('a',1);
function __construct(){
parent::__construct('a',1);
}
}
throw new a(12,1);
这俩有啥区别,用了好久了,刚才好奇就想出来一个这么个问题
回复内容:
class a extends Exception{
function __construct(){
parent::__construct('a',1);
}
}
throw new a(12,1);
这俩有啥区别,用了好久了,刚才好奇就想出来一个这么个问题
try {
$obj = new Exception('12', 1);
throw $obj;
} catch (Exception $e) {
print_r($e);
}
//=======================这是等价的
try {
throw new Exception('12', 1);
} catch (Exception $e) {
print_r($e);
}
就是抛出一个对象。
上一篇: 合理禁抓网站内页 提升网站优化效果
下一篇: 窗口的大小如何设置具体该怎么操作