Basic knowledge of Object-Oriented Programming (OOP) (I), Object-Oriented Programming (oop)
Java is a computer programming language that supports concurrency, class-based, and object-oriented.
The advantages of object-oriented software development are listed below:
1. Code development is modularized to facilitate maintenance and modification.
2. code reuse.
3. Enhance code reliability and flexibility.
4. Increase the comprehensibility of the Code.
Object-Oriented Programming has many important features, such as encapsulation, inheritance, polymorphism, and abstraction. The following sections analyze these features one by one.
Encapsulation
Encapsulation provides objects with the ability to hide internal characteristics and behaviors. The object provides some methods that can be accessed by other objects to change its internal data. In Java, there are three modifiers: public, private, and protected. Each modifier grants different access permissions to other objects located in the same package or under different packages.
Some advantages of encapsulation are listed below:
1. Hide the attributes of an object to protect the internal state of the object.
2. Improved code availability and maintainability, because the behavior of objects can be changed or expanded separately.
3. Disable adverse interaction between objects to improve modularity.
Refer to this document for more information.