✔ 最佳答案
OOP (Object Oriented Programmng) is a programming paradigm that use "object" to build a program, just kind how you assemble a car. For examples:
6 + 8 = 14
in traditional programming lang. to is considerred as an expression, but in OOP, it is considerred there is a object "6", do an operation with object "8", to produce another object "14". Another example is :
num = 6
in OOP, it interupts as an object num will do an operation that takeing "6" as parameter and store 6 as its value.
I think you should read books for OOP. It is a very wild area that cannot be explained in one paragraph