The difference between java and php interfaces is: 1. Abstract methods in php interface can only be public, and the default is public permission; 2. Private methods in java are modified with private for default methods in the interface or Static method call.
[Related learning recommendations: php programming (video)]
php:
Specification:
An interface is a special abstract class that only contains abstract methods and static constants.
Abstract methods in interfaces can only be public, and they also have public permissions by default.
The abstract and final modifiers cannot modify abstract methods in interfaces.
interface User { //public $name;//报错,只能包含抽象方法和静态常量。 const GROUP = 12;//静态常量 //public function t(){};//报错,只能包含抽象方法和静态常量。 //private function t(){};//报错,接口中的抽象方法只能是public的,默认也是public权限。 //abstract function t(){};//报错,abstract和final修饰符也不能修饰接口中的抽象方法。 //仅下面两种定义方法可以 public function right1(); function right2(); }
java:
public interface 接口名称 { // 抽象方法:使用 abstract 关键字修饰,可以省略,没有方法体。该方法供子类实现使用。 public abstract void method(); // 默认方法:使用 default 修饰,不可省略,供子类调用或者子类 // 静态方法:使用 static 修饰,供接口直接 public default void method() { // 执行语句 } // 只能通过接口名调用,不能通过实现类调用 public static void method2() { // 执行语句 } // 私有方法:使用 private 修饰,供接口中的默认方法或者静态方法调用。 private void method(){ //执行语句 } } 类实现接口 class 类名 implements 接口名 { // 重写接口中抽象方法【必须】 // 重写接口中默认方法【可选】 }
Related learning recommendations: java basic tutorial
The above is the detailed content of What is the difference between java and php interfaces. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use
