search
HomeBackend DevelopmentPHP TutorialObject-oriented programming PHP object-oriented rules

You do not have to strictly adhere to these principles, and there are no religious penalties for violating them. But you should think of these principles as alarm bells. If one of them is violated, the alarm bell will sound. ----- Arthur J.Riel
  (1) All data should be hidden inside the class where it is located.
 (2) Users of a class must rely on the shared interface of the class, but a class cannot rely on its users.
 (3) Minimize the messages in the class protocol.
 (4) Implement the most basic public interface that all classes understand [for example, copy operations (deep copy and shallow copy), equality judgment, correct output content, parsing from ASCII description, etc.].
 (5) Do not put implementation details (such as private functions that place shared code) into the public interface of the class.
 If two methods of a class have a common code, then you can create a private function that prevents these common codes.
 (6) Do not disturb the public interface of a class with things that users cannot use or are not interested in.
 (7) There should be zero coupling between classes, or only derived coupling relationships. That is, one class either has nothing to do with another class, or it only uses operations in the public interface of another class.
 (8) Classes should only represent one key abstraction.
 All classes in the package should be jointly closed for changes in properties of the same type. If a change affects a package, it will affect all classes in the package, but will not have any impact on other packages.
 (9) Centralize related data and behaviors.
Designers should pay attention to objects that obtain data from other objects through operations such as get. This type of behavior implies that this empirical principle is violated.
 (10) Put irrelevant information in another class (that is, the behavior of not communicating with each other).
 Dependencies towards stability.
 (11) Make sure that the abstract concept you model is a class, not just the role played by an object.
 (12) Distribute system functions as uniformly as possible in the horizontal direction, that is: according to design, top-level classes should share work uniformly.
 (13) Do not create omnipotent classes/objects in your system. Be especially careful with classes whose names include Driver, Manager, System, and Susystem.
 Plan an interface rather than implement an interface.
 (14) Be careful with classes that define a large number of access methods in the public interface. The large number of access methods means that relevant data and behavior are not stored centrally.
 (15) Be careful with classes that contain too many behaviors that do not communicate with each other.
Another manifestation of this problem is creating a lot of get and set functions in the public interface of the class in your application.
 (16) In an application composed of an object-oriented model that interacts with the user interface, the model should not depend on the interface, but the interface should depend on the model.
 (17) Model according to the real world as much as possible (we often violate this principle in order to comply with the principle of system function distribution, avoid the all-purpose class principle, and centrally place relevant data and behaviors).
 (18) Remove unnecessary classes from your design.
 Generally speaking, we will downgrade this class to a property.
 (19) Remove classes outside the system.
 The characteristic of classes outside the system is that in abstract terms they only send messages to the system domain but do not accept messages from other classes in the system domain.
 (20)Don’t turn operations into classes. Question any class whose name is a verb or derived from a verb, especially a class with only one meaningful action. Consider whether the meaningful behavior should be moved to a class that already exists or has not yet been discovered.
 (21) We often introduce proxy classes when creating analysis models of applications. During the design phase, we often find that many agents are useless and should be removed.
 (22) Minimize the number of collaborators of a class.
 The number of other classes used by a class should be as small as possible.
 (23) Minimize the number of messages passed between classes and collaborators.
 (24) Minimize the amount of collaboration between classes and collaborators, that is: reduce the number of different messages passed between classes and collaborators.
 (25) Try to reduce the fan-out of the class, that is: reduce the product of the number of messages defined by the class and the number of messages sent.
 (26) If a class contains an object of another class, the containing class should send a message to the contained object. That is: an inclusion relation always implies a use relation.
 (27) Most methods defined in a class should use most data members most of the time.
 (28) The number of objects contained in a class should not exceed the capacity of the developer's short-term memory. This number is often 6.
 When a class contains more than 6 data members, you can divide logically related data members into a group, and then use a new containing class to contain this group of members.
 (29) Let system functions be distributed vertically in a narrow and deep inheritance system.
 (30) When implementing semantic constraints, it is best to implement them based on class definitions. This often leads to class overflow, in which case the constraints should be implemented in the behavior of the class, usually but not necessarily in the constructor.
 (31) When implementing semantic constraints in the constructor of a class, place the constraint test in the deepest inclusion level allowed by the constructor domain.
 (32) If the semantic information that constraints rely on changes frequently, it is best to put it in a centralized third-party object.
 (33) If the semantic information on which a constraint depends rarely changes, it is best distributed among the various classes involved in the constraint.
 (34) The class must know what it contains, but it cannot know who contains it.
 (35) Objects that share literal scope (that is, are contained by the same class) should not have a usage relationship with each other.
 (36)Inheritance should only be used to model specialization hierarchies.
 (37) Derived classes must know the base class, and base classes should not know any information about their derived classes.
 (38) All data in the base class should be private, do not use protected data.
 The designer of a class should never put things in a public interface that are not needed by the users of the class.
 (39) In theory, the inheritance hierarchy should be deeper, the deeper the better.
 (40)In practice, the depth of the inheritance hierarchy should not exceed the short-term memory capacity of an average person. A widely accepted depth value is 6.
 (41) All abstract classes should be base classes.
 (42) All base classes should be abstract classes.
 (43) Put commonalities in data, behavior and/or interfaces as high-end as possible in the inheritance hierarchy.
 (44) If two or more classes share common data (but no common behavior), then the common data should be placed in a class, and each class that shares this data contains this class.
 (45) If two or more classes have common data and behavior (that is, methods), then each of these classes should inherit from a common base class that represents these data and methods.
 (46) If two or more classes share a common interface (referring to messages, not methods), then they should inherit from a common base class only if they need to be used polymorphically.
 (47) The case-by-case analysis of the display of object types is generally wrong. In most such cases, designers should use polymorphism.
 (48) Situational analysis of the display of attribute values ​​is often wrong. Classes should be decoupled into an inheritance hierarchy, with each attribute value transformed into a derived class.
 (49) Do not model the dynamic semantics of a class through inheritance relationships. Attempting to model dynamic semantics with static semantic relations results in switching types at runtime.
 (50) Do not turn class objects into derived classes. Be careful with any derived class that has only one instance.
 (51) If you think you need to create a new class at runtime, take a step back and realize that you are creating objects. Now, generalize these objects into a class.
 (52) It should be illegal to use empty methods (that is, methods that do nothing) in derived classes to override methods in base classes.
 (53) Don’t confuse optional inclusion with the need for inheritance. Modeling optional inclusion as inheritance leads to a proliferation of classes.
 (54) When creating an inheritance hierarchy, try to create reusable frameworks rather than reusable components.
 (55) If you use multiple inheritance in your design, assume you made a mistake. If you didn't make a mistake, you need to try to prove it.
 (56) As long as inheritance is used in object-oriented design, ask yourself two questions: (1) Is the derived class a special type of the thing it inherits? (2) Is the base class part of the derived class?
(57) If you find multiple inheritance in an object-oriented design, make sure that no base class is actually a derived class of another base class.
 (58) In object-oriented design, if you need to choose between inclusion and association, please choose inclusion.
 (59) Do not use global data or global functions for bookkeeping of class objects. Class variables or class methods should be used.
 (60) Object-oriented designers should not let physical design principles undermine their logical design. However, we often use physical design criteria in making decisions about logical design.
 (61) Do not bypass the public interface to modify the state of the object.

The above has introduced the object-oriented programming principles of PHP, including the content of object-oriented programming. 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
Java面试常见问题与答案Java面试常见问题与答案Jun 16, 2023 am 08:52 AM

Java作为一门常见的编程语言,其在IT行业中有着广泛的应用,成为了许多公司招聘中的重要技能之一。在Java开发岗位的面试中,面试官往往会问及一些常见的Java问题,以此考察应聘者的Java编程水平。本文将列举几个常见的Java面试问题及其答案,供广大应聘者参考。什么是Java虚拟机?答:Java虚拟机(JVM)是一种虚拟的计算机,可以执行Java字节码。它

PHP的面向对象编程范式为项目管理和组织提供优势PHP的面向对象编程范式为项目管理和组织提供优势Sep 08, 2023 am 08:15 AM

PHP的面向对象编程范式为项目管理和组织提供优势随着互联网的飞速发展,各种规模的网站和应用程序如雨后春笋般涌现出来。为了满足日益增长的需求,并提高开发效率和可维护性,采用面向对象编程(Object-OrientedProgramming,简称OOP)的方法成为了现代软件开发的主流。在PHP这样的动态脚本语言中,OOP为项目管理和组织带来了许多优势,本文将介

面向对象编程和MySql:如何实现更优雅的代码面向对象编程和MySql:如何实现更优雅的代码Jun 16, 2023 am 08:03 AM

随着计算机应用的不断普及和发展,程序设计语言也不断演化和更新。面向对象编程语言在当今程序设计中占据了主导地位,而MySQL则是最流行的关系型数据库管理系统之一。如何在面向对象编程中结合使用MySQL实现更优雅的代码呢?一、面向对象编程的基本概念面向对象编程(ObjectOrientedProgramming,简称OOP)是一种编程思想,它强调对象的概念和

Java面向对象编程:封装、继承和多态Java面向对象编程:封装、继承和多态May 11, 2023 pm 07:51 PM

Java是一种面向对象编程语言,具备三个重要的特性:封装、继承和多态。这三个特性使得Java程序具有高度的可重用性、可维护性和可扩展性。在本文中,我们将介绍Java面向对象编程的三个重要特性。一、封装封装是面向对象编程的基础。它是指将数据和行为封装在一起,保护数据不被直接访问,而是通过类的接口进行访问。封装可以使得程序更加安全、可靠和易于维护。在Java中,

面向对象编程是什么意思面向对象编程是什么意思Jul 17, 2023 pm 01:56 PM

面向对象编程是一种编码设计,它使用数据来表示一组指令。它是一种具有对象概念的程序编程典范,同时也是一种程序开发的抽象方针。它由描述状态的属性和用来实现对象行为的方法组成,完成了从数据模型到处理模型的结合与统一。

理解PHP面向对象编程中的工厂模式理解PHP面向对象编程中的工厂模式Aug 10, 2023 am 10:37 AM

理解PHP面向对象编程中的工厂模式工厂模式是一种常用的设计模式,它用于创建对象的过程中将对象的创建和使用解耦。在PHP面向对象编程中,工厂模式可以帮助我们更好地管理对象的创建和生命周期。本文将通过代码示例来详细介绍PHP中的工厂模式。在PHP中,我们可以通过使用工厂模式来实现对象的创建和初始化过程,而不是直接使用new关键字。这样做的好处是,如果将来需要改变

PHP面向对象编程中的访问者模式解析PHP面向对象编程中的访问者模式解析Aug 10, 2023 pm 01:33 PM

PHP面向对象编程中的访问者模式解析访问者模式是一种常用的设计模式,它可以分离数据结构和处理逻辑,使得同一个数据结构可以有不同的处理逻辑,而且可以在不修改数据结构的情况下增加新的处理逻辑。在PHP中,访问者模式可以帮助我们更好地组织代码,并提高代码的可维护性和可扩展性。本文将深入探讨PHP面向对象编程中的访问者模式,并通过示例代码进行解析。一、模式概述访问者

解析PHP面向对象编程中的类属性和方法解析PHP面向对象编程中的类属性和方法Aug 12, 2023 pm 01:06 PM

解析PHP面向对象编程中的类属性和方法PHP是一种被广泛应用于Web开发的脚本语言,它支持面向对象编程(OOP)的特性。在PHP中,类是一种用来创建对象的蓝图或模板,而属性和方法则是类的核心部分。本文将深入解析PHP面向对象编程中的类属性和方法,并通过代码示例来加深理解。一、类属性类属性是指用于描述类的特有数据的变量。它们可以存储对象的状态和特征。在PHP中

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 Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)