Object-oriented programming: Difference between revisions

Content deleted Content added
top: chop intro sentence, prev version was halting
Fixed to use proper English. Previously it used only the American English syntax. Now it uses both.
Tags: Reverted Mobile edit Mobile web edit
Line 5:
{{Programming paradigms}}
 
'''Object-oriented programming''' ('''OOP''') - or to use correct English: Object-orientated programming - is a [[programming paradigm]] based on the concept of "[[Object (computer science)|objects]]", which can contain [[data]] and [[Computer program|code]]. The data is in the form of [[Field (computer science)|fields]] (often known as [[Attribute (computing)|attributes]] or ''properties''), and the code is in the form of procedures (often known as ''[[Method (computer science)|methods]]'').
 
A common feature of objects is that procedures (or methods) are attached to them and can access and modify the object's data fields. In this brand of OOP, there is usually a special name such as [[this (computer programming)|{{code|this|C++}}]] or {{code|self|swift}} used to refer to the current object. In OOP, computer programs are designed by making them out of objects that interact with one another.<ref>{{Cite journal