Home Common Problem What does OOP thinking refer to?

What does OOP thinking refer to?

Jun 28, 2020 am 10:15 AM
oop

OOP thinking refers to object-oriented programming. Object-oriented emphasizes the "abstraction", "encapsulation", "inheritance" and "polymorphism" of objects. Compared with process-oriented, this idea focuses on some methods of using objects. To solve problems, different functions may be solved by different objects.

What does OOP thinking refer to?

Classes and Objects

Class: A class is an abstract concept, a class of things with the same characteristics General term, such as college students;

Object: The object is the entity of a specific thing, such as a specific student Zhang San.

Three major characteristics of object-oriented

1. Encapsulation

Encapsulation means that a class can have some private properties and methods, which can solve a problem The solution is encapsulated and only a part of the interface is provided to the outside world. The problem can be solved by calling the interface, but the outside world does not know what the specific solution is.

2. Inheritance

A class can obtain the non-private properties and methods of another class through inheritance, so that the properties and methods of the inherited class can be reused.

3. Polymorphism

Child objects instantiated by the same parent class can get different results by calling the same method. This is polymorphism.

Seven Design Principles

SOLID Principle

Single Responsibility Principle: Only one class/interface/method can have one and only one responsibility;

Open-Closed Principle: Open to expansion, closed to modification;

Richter Substitution Principle: All places that reference a base class must be able to transparently use objects of its derived classes;

Interface isolation principle: users cannot be forced to rely on interfaces they do not use. Using multiple interfaces is better than using one total interface;

Dependency inversion principle:

A. High-level modules do not Should depend on low-level modules, both should depend on abstraction

B. Abstraction should not depend on details, details should depend on abstraction. C. Program for interfaces, not for implementation

Di Mitte's Law: A software entity should interact with other entities as little as possible

Principle of combination reuse: Try to use combination/aggregation, do not use class inheritance

Recommended tutorial :《PHP

The above is the detailed content of What does OOP thinking refer to?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

'Introduction to Object-Oriented Programming in PHP: From Concept to Practice' 'Introduction to Object-Oriented Programming in PHP: From Concept to Practice' Feb 25, 2024 pm 09:04 PM

What is object-oriented programming? Object-oriented programming (OOP) is a programming paradigm that abstracts real-world entities into classes and uses objects to represent these entities. Classes define the properties and behavior of objects, and objects instantiate classes. The main advantage of OOP is that it makes code easier to understand, maintain and reuse. Basic Concepts of OOP The main concepts of OOP include classes, objects, properties and methods. A class is the blueprint of an object, which defines its properties and behavior. An object is an instance of a class and has all the properties and behaviors of the class. Properties are characteristics of an object that can store data. Methods are functions of an object that can operate on the object's data. Advantages of OOP The main advantages of OOP include: Reusability: OOP can make the code more

Application of Golang functions in object-oriented programming Application of Golang functions in object-oriented programming May 31, 2024 pm 07:36 PM

Go functions are available as methods of objects. Methods are functions associated with an object that provide access to the object's fields and methods. In Go, methods are defined using func(receiver_type)identifier(parameters)return_type syntax. This approach plays an important role in object-oriented programming by providing encapsulation, reuse, and extensibility.

Using functions in PHP OOP: Q&A Using functions in PHP OOP: Q&A Apr 10, 2024 pm 09:27 PM

There are two types of functions in PHPOOP: class methods and static methods. Class methods belong to a specific class and are called by instances of that class; static methods do not belong to any class and are called through the class name. Class methods are declared using publicfunction, and static methods are declared using publicstaticfunction. Class methods are called through object instances ($object->myMethod()), and static methods are called directly through the class name (MyClass::myStaticMethod()).

The evolution of PHP object-relational mapping and database abstraction layers in modern web development The evolution of PHP object-relational mapping and database abstraction layers in modern web development May 06, 2024 pm 03:51 PM

The evolution of ORM and DAL in PHP: ORM maps database tables into PHP objects, simplifying operations, but may affect performance and flexibility. DAL provides an abstraction of database operations, which enhances portability, but increases interface complexity and reduces efficiency. ORMs such as LaravelEloquent can be used for CRUD operations, while PDODAL employs parameterized queries for improved security. Select appropriate tools based on project requirements to optimize application performance, portability, and security.

Naming conventions and specifications for PHP OOP functions Naming conventions and specifications for PHP OOP functions Apr 11, 2024 am 10:36 AM

PHPOOP function naming conventions include the use of Pascal nomenclature (high camel case for class names and interface names) and underscores (member variables, constants, function and method names). The naming convention specifies the use of access control characters (public, protected, and private) and prefix conventions (double underscore means private, single underscore means protected). Practical examples show how to define classes, member variables, and methods according to these conventions.

Write powerful applications using OOP in PHP Write powerful applications using OOP in PHP Jun 19, 2023 pm 03:35 PM

Write powerful applications using OOP in PHP As web applications become more complex, writing applications using object-oriented programming (OOP) is becoming more and more popular. OOP provides a way to organize code to make it more maintainable and easily extensible. PHP is a very popular web programming language because it is very flexible, easy to learn, and has a large number of libraries and tools available for use. In this article, we will explain how to write powerful applications using OOP in PHP. 1. Understand the concept of OOP

Detailed explanation of the life cycle of PHP OOP functions Detailed explanation of the life cycle of PHP OOP functions Apr 12, 2024 am 11:00 AM

The life cycle of the PHPOOP function has four stages: 1. Declaration; 2. Reference; 3. Execution; 4. Destruction. When declared, the life cycle of the function begins; when referenced, the function is called and executed; when executed, the function code block is executed; when destroyed, function variables and local variables are destroyed.

The mechanism of function calling in PHP OOP The mechanism of function calling in PHP OOP Apr 11, 2024 am 11:03 AM

In PHPOOP, function calls follow these steps: Identify the class and method. Check access rights. Binding context. Pass parameters. Execute the function body. Return results.