Language classification
1. Machine oriented
It is abstracted into machine instructions and easy for the machine to understand
Representative: assembly language
2. Process oriented
To do a thing, set out the steps, what to do in the first step, what to do in the second step, what to do if A happens, and what to do if B happens.
The scale of the problem is small. It can be step by step
Representative: C language
3. Object oriented OOP
With the expansion of the scale of the problems that computers need to solve, the situation is becoming more and more complex. It requires a lot of people and departments to cooperate, and process orientation is not appropriate.
Representative: C, Java, Python, etc
object-oriented
What is object-oriented?
Face to