标签:str mes data header lse name problem where tps
原文引用https://www.dazhuanlan.com/2019/08/25/5d622a3ae2eb7/
Object-Oriented Programming A.K.A : OOP
is a way(paradigm) of building computer programs so that they are both intuitive to humans(problem side) and computers(solution side).
Objects have attributes and methods.
Attributes are basically the characteristics or properties, or state about the object. Like a Person has a name, gender and age.
Methods are actions or functionalities that can be performed or executed on objects from somewhere else in the programs. Like a Light can be On and Off.
If you build your programs using OOP, you basically build a collection of objects that can interact with each other by sending messages.
标签:str mes data header lse name problem where tps
原文地址:https://www.cnblogs.com/petewell/p/11408039.html