0

0

PHP类抽象化

WBOY

WBOY

发布时间:2023-08-30 23:17:06

|

1643人浏览过

|

来源于tutorialspoint

转载

php类抽象化

Introduction

In object oriented programming, an abstract class is the one that can be instantiated, i.e. it is not possible to declare object of such class. PHP supports concept of abstarct class since version 5.0

A class defined with abstract keyword becomes an abstract class. Further, any class which contains at least one abstract method is also considered abstract.

Syntax

如果我们尝试创建这个类的一个对象,PHP解析器会抛出以下错误:

$a=new testclass();
PHP Fatal error: Uncaught Error: Cannot instantiate abstract class testclass

abstract method

Abstract method only declares its signature i.e. its visibility, arguments and return type with type hints and donot have any functionality. A class that inherits such an abstract class must override (provide definition) all abstract methods. Corresponding method in child class must carry same signature as in parent class. If child class doesn't fulfil this condition, PHP parser throws exception. A class that extends an abstract class can now be instantiated, hence it is called concrete class

立即学习PHP免费学习笔记(深入)”;

In following example, parent class has two abstract methods, only one of which is redefined in child class. This results in error as follows −

html5 canvas抽象画布可视化特效
html5 canvas抽象画布可视化特效

一款html5 canvas抽象画布可视化特效

下载

Example

 Live Demo

Output

Following is the error message

PHP Fatal error: Class myclass contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (testclass::hello)

Abstract method with arguments

When abstract method is defined with arguments, it must be overridden in child class with same number of arguments

In following example, abstract method in parent class has two arguments. Child class also defines same function with two arguments

Example

 Live Demo

hello("Ravi",20);
?>

输出

这将产生以下输出 −

My name is Ravi and my age is 20

相关专题

更多
c++ 根号
c++ 根号

本专题整合了c++根号相关教程,阅读专题下面的文章了解更多详细内容。

57

2026.01.23

c++空格相关教程合集
c++空格相关教程合集

本专题整合了c++空格相关教程,阅读专题下面的文章了解更多详细内容。

57

2026.01.23

yy漫画官方登录入口地址合集
yy漫画官方登录入口地址合集

本专题整合了yy漫画入口相关合集,阅读专题下面的文章了解更多详细内容。

237

2026.01.23

漫蛙最新入口地址汇总2026
漫蛙最新入口地址汇总2026

本专题整合了漫蛙最新入口地址大全,阅读专题下面的文章了解更多详细内容。

393

2026.01.23

C++ 高级模板编程与元编程
C++ 高级模板编程与元编程

本专题深入讲解 C++ 中的高级模板编程与元编程技术,涵盖模板特化、SFINAE、模板递归、类型萃取、编译时常量与计算、C++17 的折叠表达式与变长模板参数等。通过多个实际示例,帮助开发者掌握 如何利用 C++ 模板机制编写高效、可扩展的通用代码,并提升代码的灵活性与性能。

17

2026.01.23

php远程文件教程合集
php远程文件教程合集

本专题整合了php远程文件相关教程,阅读专题下面的文章了解更多详细内容。

103

2026.01.22

PHP后端开发相关内容汇总
PHP后端开发相关内容汇总

本专题整合了PHP后端开发相关内容,阅读专题下面的文章了解更多详细内容。

73

2026.01.22

php会话教程合集
php会话教程合集

本专题整合了php会话教程相关合集,阅读专题下面的文章了解更多详细内容。

81

2026.01.22

宝塔PHP8.4相关教程汇总
宝塔PHP8.4相关教程汇总

本专题整合了宝塔PHP8.4相关教程,阅读专题下面的文章了解更多详细内容。

70

2026.01.22

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
Go 教程
Go 教程

共32课时 | 4.2万人学习

MongoDB 教程
MongoDB 教程

共17课时 | 2.3万人学习

TypeScript 教程
TypeScript 教程

共19课时 | 2.4万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号