Override 类

(PHP 8 >= 8.3.0)

简介

类概述

final class Override {
/* 方法 */
public __construct()
}

示例

<?php

class Base {
protected function
foo(): void {}
}

final class
Extended extends Base {
#[
\Override]
protected function
boo(): void {}
}

?>

PHP 8.3 中以上示例的输出类似于

Fatal error: Extended::boo() has #[\Override] attribute, but no matching parent method exists

参见

目录

添加笔记

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top