search
HomeBackend DevelopmentPHP TutorialGetting Started with PHP 8 Object Oriented 3 Interface

Keyword interface


The interface cannot have implemented methods


Cannot use data, but can have constants


JAVA interface: http://blog.csdn.net/a289672082/article/details/51518398
<code><span><span><?php </span><span><span>interface</span><span>Code</span>{</span><span>//public $data=123;  错误 接口中不能有访问属性的数据</span><span>const</span>   data =<span>123</span>;<span>//正确 接口中可以使用常量</span><span>public</span><span><span>function</span><span>_print</span><span>()</span>;</span><span>//public  function _print2(){};  错误,接口中不能用实现的方法</span>
}

<span><span>class</span><span>CPlusPlus</span><span>implements</span><span>Code</span>{</span><span>public</span><span><span>function</span><span>_print</span><span>()</span>
    {</span><span>echo</span><span>"std::cout <br>"</span>;

    }  
}

<span><span>class</span><span>JavaScript</span><span>implements</span><span>Code</span>{</span><span>public</span><span><span>function</span><span>_print</span><span>()</span>
    {</span><span>echo</span><span>"console.log(...) <br>"</span>;

    }
}

<span>$C</span> = <span>new</span> CPlusPlus();
<span>$JS</span> = <span>new</span> JavaScript();
<span>$C</span>->_print();
<span>$JS</span>->_print();
<span>?></span></span></span></code>
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

The above introduces the PHP Getting Started 8 Object-Oriented 3 interface, including the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
iOS的developer版和public版有什么区别?iOS的developer版和public版有什么区别?Mar 01, 2024 pm 12:55 PM

每年Apple发布新的iOS和macOS大版本之前,用户都可以提前几个月下载测试版抢先体验一番。由于公众和开发人员都使用该软件,所以苹果公司为两者推出了developer和public版即开发者测试版的公共测试版。iOS的developer版和public版有什么区别呢?从字面上的意思来说,developer版是开发者测试版,public版是公共测试版。developer版和public版面向的对象不同。developer版是苹果公司给开发者测试使用的,需要苹果开发者帐号才可以收到下载并升级,是

PHP常用的文件操作函数总结PHP常用的文件操作函数总结Apr 03, 2024 pm 02:52 PM

目录1:basename()2:copy()3:dirname()4:disk_free_space()5:disk_total_space()6:file_exists()7:file_get_contents()8:file_put_contents()9:filesize()10:filetype()11:glob()12:is_dir()13:is_writable()14:mkdir()15:move_uploaded_file()16:parse_ini_file()17:

基于聚合数据的短信API接口调用示例-Python版基于聚合数据的短信API接口调用示例-Python版Apr 03, 2024 pm 01:28 PM

一、申请接口通过https://www.juhe.cn/docs/api/id/54自助申请开通短信API,获得接口请求Key。(目前接口暂只支持企业类用户使用)申请后,在个人中心提交短信模板,聚合官方已经提供了多个常用模板,可以快捷申请使用。二、python代码示例官方接口文档请参考:Https://www.juhe.cn/docs/api/id/54#!/usr/bin/Python#-*-coding:utf-8-*-importurllib,urllib2,sys,JSONreload(

jQuery如何添加类?jQuery如何添加类?Apr 03, 2024 am 09:01 AM

这篇文章将为大家详细讲解有关Jquery如何添加类?,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。jQuery添加类的两种常用方法1.addClass()方法addClass()方法为选定的元素添加一个或多个类。语法如下:$(selector).addClass(classNames);其中:selector:要添加类的元素选择器。classNames:要添加的类,可以是单个字符串或空格分隔的字符串列表。例如,以下代码为ID为my-element的元素添加ac

一文搞懂PHP中的DI依赖注入一文搞懂PHP中的DI依赖注入Apr 03, 2024 pm 01:46 PM

目录什么是DI/依赖注入依赖注入出现的原因简单的依赖注入高阶的依赖注入依赖注入的应用依赖注入高阶优化什么是DI/依赖注入依赖注入DI其实本质上是指对类的依赖通过构造器完成自动注入通俗来说,就是你当前操作一个类,但是这个类的某些方法或者功能不是单单只靠这个类就能完成的,而是要借助另一个类的才能完成的最直接的标志就是传参数据为对象的时候。严格来说,你想在一个类中操作另一个类,这两个类之间形成了相互依赖关系,传参的方式叫注入依赖注入出现的原因在未使用依赖注入的时候,PHP需要在一个类中使用另一个类的时

Java 函数的访问权限修饰符之 public 使用指南Java 函数的访问权限修饰符之 public 使用指南Apr 26, 2024 am 08:39 AM

Javapublic访问权限修饰符允许函数从任何位置访问,用于声明公共API、定义跨包或类共享的工具和实用程序。具体用法如下:语法:public返回值类型函数名称(参数列表){...}场景:需要从任何地方访问的函数、公共API中的方法、共享的工具或实用程序

print在键盘哪里print在键盘哪里Jun 19, 2023 am 09:37 AM

printscreen键在键盘设备的方向键上,有“prtsc sysrq”字样,位于f12的右侧。如果没有“prtsc sysrq”字样的按键,可找到“fn”和“insert(prt sc)”,先点击“fn”,再点击‘insert(PRT sc)’实现printscreen截图功能。

Python函数介绍:print函数的功能和使用示例Python函数介绍:print函数的功能和使用示例Nov 03, 2023 pm 04:33 PM

Python是一种流行的编程语言,旨在使计算机编程变得更加简单和易于理解。在Python中,用print函数向控制台输出文本是一个基本的任务。在本文中,我们将介绍Python的print函数,探索其功能和使用示例,并提供代码示例来帮助您更好地了解如何使用该函数。Python的print函数是一个内置的函数,用于输出文本和变量的值。它的语法非常简单。您只需将要

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.