


The actual role of php interface class abstract class_PHP tutorial
Many people don’t understand the difference between interfaces and abstract classes! Let me share my understanding with you!
1.php interface class: interface
In fact, their function is very simple. When many people develop a project together, they may all call it Some classes written by others, then you will ask, how do I know how to name the implementation method of a certain function? At this time, the PHP interface class comes into play. When we define an interface class, it The methods inside must be implemented by the following subclasses, such as:
Copy to ClipboardQuoted content: [www.bkjia.com]
interface Shop
{
public function buy($gid);
public function sell($gid);
public function view($gid);
}
I declare a shop interface class and define three methods: buy, sell, and view. Then all subclasses that inherit this class must implement any of these three methods. If the subclass If a class does not implement these words, it cannot run. In fact, the interface class is, to put it bluntly, the template of a class and the regulations of a class. If you belong to this category, you must follow my regulations. No matter how you do it, I don’t care how you do it. That’s up to you. things, such as:
Copy to ClipboardQuoted content: [www.bkjia.com]
class BaseShop implements Shop
{
public function buy($gid)
{
echo('You purchased the product with ID: '.$gid.');
}
public function sell($gid)
{
echo('You sold the product with ID: '.$gid.');
}
public function view($gid)
{
echo('You viewed the product with ID:'.$gid.');
}
}
Think about it, in a large project where many people collaborate, it is very convenient to have interface classes, so that you don’t have to ask others what the method name of your certain function is. Of course, if you like There's nothing I can do about it.
Conclusion: The interface class is the leader of a class, pointing out the direction, and the subclass must complete its specified method.
2.php abstract class: abstract
In fact, abstract classes and interface classes are partially similar. Remember where I saw this sentence, abstract classes extract the similar parts. This The sentence looks funny, but in fact it tells the truth about abstract classes. The function of abstract classes is that when you find that many of your classes use many methods that you keep repeating, then you can consider using abstract classes. You may say, "Isn't it possible for me to rewrite a class and instantiate each public class and call the same method?" Yes, it is possible. In fact, this is what abstract classes do, but It saves you the step of instantiation, making it as convenient as calling the method of this class directly, and you can also overload this method. Such as:

{
public function buy($gid)
{
echo('You purchased the product with ID: '.$gid.');
}
public function sell($gid)
{
echo('You sold the product with the ID: '.$gid.');
}
public function view($gid)
{
echo('You viewed the product with ID: '.$gid.');
}
}
class BallShop extends BaseShop
{
var $ itme_id = null;
public function __construct()
{
$this->itme_id = 2314;
}
public function open()
{
$this- >sell($this->itme_id);
}
}
Here is an example. Like the above, I defined a store class and extracted all its parts, such as buy, sell, and view, and implemented these methods in the abstract class. , then the subclass that inherits it will automatically obtain these methods, and the subclass will do its own unique things, introduce code duplication, and improve reusability.
Conclusion: An abstract class is a service provider of a class. It has many services. You don’t have to use them. You can use them when needed. If you feel dissatisfied with not providing services, you can also use them yourself. Come and do it.
The above are my humble opinions on PHP interface classes and abstract classes. I hope it can help those who are confused about these two. If you have any comments, please leave a message!
Reprinted from: http://www.cnblogs.com/200831856/

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

DeepSeek: In-depth comparison between R1 and V3 versions helps you choose the best AI assistant! DeepSeek already has tens of millions of users, and its AI dialogue function has been well received. But are you confused when facing the R1 and V3 versions? This article will explain the differences between the two in detail to help you choose the most suitable version. The core difference between DeepSeekR1 and V3 version: Features The design goal of the V3 version focuses on complex problem reasoning, deep logic analysis, multi-functional large language model, focusing on scalability and efficiency architecture and parameter reinforcement learning optimization architecture, parameter scale 1.5 billion to 70 billion MoE hybrid Expert architecture, total parameters are as high as 671 billion, each token is activated by 37 billion

DeepSeekAI Tool User Guide and FAQ DeepSeek is a powerful AI intelligent tool. This article will answer some common usage questions to help you get started quickly. FAQ: The difference between different access methods: There is no difference in function between web version, App version and API calls, and App is just a wrapper for web version. The local deployment uses a distillation model, which is slightly inferior to the full version of DeepSeek-R1, but the 32-bit model theoretically has 90% full version capability. What is a tavern? SillyTavern is a front-end interface that requires calling the AI model through API or Ollama. What is breaking limit

The cryptocurrency market is booming, and Bitcoin, as a leader, has attracted the attention of many investors. Many people are curious: Do Bitcoin have stocks? The answer is no. Bitcoin itself is not a stock, but investors can indirectly invest in Bitcoin-related assets through various channels, which will be explained in detail in this article. Alternatives to Bitcoin Investment: Instead of investing directly in Bitcoin, investors can participate in the Bitcoin market by: Bitcoin ETF: This is a fund traded on the stock trading market, whose asset portfolio contains Bitcoin or Bitcoin futures contracts. This is a relatively convenient option for investors who are accustomed to stock investments, without having to hold Bitcoin directly. Bitcoin Mining Company Stocks: These companies' business is Bitcoin mining and holding Bitcoin

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

DeepSeek: An AI smart assistant you must not miss! DeepSeek is an AI tool that is popular among users. It has become a must-have software for many users recently. It provides powerful intelligent interactive communication functions, and the following is a detailed introduction to its powerful functions: DeepSeek's core functions: Text processing master: Easily create high-quality copywriting, translate and polish it, and improve your text expression ability. Programming tools: efficiently generate and complete code, quickly understand code logic, and effectively detect and correct code errors, greatly improving programming efficiency. Intelligent interaction expert: Built-in intelligent customer service and smart cockpit functions to provide a convenient interactive experience. Data analysis forecasting experts: supporters
