+---------------------------------------------------------------------+
| = This article is read by Haohappy<<Core PHP Programming>>
| =Notes from the chapter Classes and Objects
| = Translation as the main + personal experience
| = To avoid unnecessary troubles that may occur, please do not reprint, thank you
| = Criticism and correction are welcome, and I hope to make progress with all PHP enthusiasts!
| = PHP5 Research Center:/haohappy2004
+---------------------------------------------------------------------+
*/
Section 1 - Object-Oriented Programming
Object-oriented programming is designed to provide solutions for large software projects, especially those that are collaborated by multiple people. When the source code grows to ten thousand lines or even more, every change can lead to undesirable side effects. This happens when secret alliances between modules are formed, just like Europe before World War I.
//haohappy Note: Metaphor refers to the high correlation between modules and the interdependence is too strong. Changing one module causes other modules to also change.
Imagine if there is a module used to handle login that allows a credit card processing module to share its database connection. Of course, the starting point is good, saving the expense of making another database connection. However, sometimes, the login processing module changes the name of one of the variables and may cut off the agreement between the two. This leads to errors in processing the credit card module, which in turn leads to errors in the module processing the invoice. Soon, all unrelated modules in the system may make errors.
Therefore, I find it a bit dramatic that most programmers are grateful for coupling and encapsulation. Coupling is a measure of the degree of dependence between two modules. The less coupling, the better. We want to be able to pull one module from an existing project and use it in another new project.
We also hope to make large-scale changes within a certain module without worrying about the impact on other modules. The encapsulation principle can provide this solution. Modules are regarded as relatively independent, and data communication between modules is carried out through interfaces. Modules do not peek at another module through each other's variable names, they send requests politely through functions.
Encapsulation is a principle you can use in any programming language. It is tempting to be lazy in PHP and many process-oriented languages. There is nothing to stop you from building a hypothetical WEB through modules. Object-oriented programming is a way to prevent programmers from violating the encapsulation principle.
In object-oriented programming, modules are organized into objects. These objects have methods and attributes. From an abstract perspective, a method is the action done by an object, and attributes are the characteristics of an object. From a programming perspective, a method is a function and an attribute is a variable. In an ideal object-oriented system, each part is an object. The system consists of the connections formed by methods between objects and objects.
A class defines the properties of an object. If you are baking a group of cookies, the class will be a cookie machine. The properties and methods of the class are the members being called. People can express it by saying the data members or method members.
Each language provides different ways to access objects. PHP borrows concepts from C++ and provides a data type to include functions and variables under an identifier. When PHP was initially designed, even when PHP3 was developed, PHP did not intend to provide the ability to develop large projects with more than 100,000 lines of code. With the development of PHP and Zend engines, it becomes possible to develop large projects, but no matter how large your project is, writing your scripts with classes will allow the code to be reused. This is a good idea, especially when you are willing to share your code with others.
The idea of objects is one of the most exciting concepts in computer science. It's hard to master it at first, but I can guarantee that once you master it, it will be very natural to think with its mind.
| = This article is read by Haohappy<<Core PHP Programming>>
| =Notes from the chapter Classes and Objects
| = Translation as the main + personal experience
| = To avoid unnecessary troubles that may occur, please do not reprint, thank you
| = Criticism and correction are welcome, and I hope to make progress with all PHP enthusiasts!
| = PHP5 Research Center:/haohappy2004
+---------------------------------------------------------------------+
*/
Section 1 - Object-Oriented Programming
Object-oriented programming is designed to provide solutions for large software projects, especially those that are collaborated by multiple people. When the source code grows to ten thousand lines or even more, every change can lead to undesirable side effects. This happens when secret alliances between modules are formed, just like Europe before World War I.
//haohappy Note: Metaphor refers to the high correlation between modules and the interdependence is too strong. Changing one module causes other modules to also change.
Imagine if there is a module used to handle login that allows a credit card processing module to share its database connection. Of course, the starting point is good, saving the expense of making another database connection. However, sometimes, the login processing module changes the name of one of the variables and may cut off the agreement between the two. This leads to errors in processing the credit card module, which in turn leads to errors in the module processing the invoice. Soon, all unrelated modules in the system may make errors.
Therefore, I find it a bit dramatic that most programmers are grateful for coupling and encapsulation. Coupling is a measure of the degree of dependence between two modules. The less coupling, the better. We want to be able to pull one module from an existing project and use it in another new project.
We also hope to make large-scale changes within a certain module without worrying about the impact on other modules. The encapsulation principle can provide this solution. Modules are regarded as relatively independent, and data communication between modules is carried out through interfaces. Modules do not peek at another module through each other's variable names, they send requests politely through functions.
Encapsulation is a principle you can use in any programming language. It is tempting to be lazy in PHP and many process-oriented languages. There is nothing to stop you from building a hypothetical WEB through modules. Object-oriented programming is a way to prevent programmers from violating the encapsulation principle.
In object-oriented programming, modules are organized into objects. These objects have methods and attributes. From an abstract perspective, a method is the action done by an object, and attributes are the characteristics of an object. From a programming perspective, a method is a function and an attribute is a variable. In an ideal object-oriented system, each part is an object. The system consists of the connections formed by methods between objects and objects.
A class defines the properties of an object. If you are baking a group of cookies, the class will be a cookie machine. The properties and methods of the class are the members being called. People can express it by saying the data members or method members.
Each language provides different ways to access objects. PHP borrows concepts from C++ and provides a data type to include functions and variables under an identifier. When PHP was initially designed, even when PHP3 was developed, PHP did not intend to provide the ability to develop large projects with more than 100,000 lines of code. With the development of PHP and Zend engines, it becomes possible to develop large projects, but no matter how large your project is, writing your scripts with classes will allow the code to be reused. This is a good idea, especially when you are willing to share your code with others.
The idea of objects is one of the most exciting concepts in computer science. It's hard to master it at first, but I can guarantee that once you master it, it will be very natural to think with its mind.